Task: | Illuminati |
Sender: | Rasse |
Submission time: | 2024-10-28 17:45:35 +0200 |
Language: | C++ (C++11) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.00 s | details |
#2 | ACCEPTED | 0.00 s | details |
#3 | ACCEPTED | 0.00 s | details |
#4 | ACCEPTED | 0.00 s | details |
#5 | ACCEPTED | 0.00 s | details |
#6 | ACCEPTED | 0.00 s | details |
#7 | ACCEPTED | 0.00 s | details |
#8 | ACCEPTED | 0.00 s | details |
#9 | ACCEPTED | 0.00 s | details |
#10 | ACCEPTED | 0.00 s | details |
#11 | ACCEPTED | 0.00 s | details |
#12 | ACCEPTED | 0.00 s | details |
#13 | ACCEPTED | 0.00 s | details |
#14 | ACCEPTED | 0.00 s | details |
#15 | ACCEPTED | 0.00 s | details |
#16 | ACCEPTED | 0.00 s | details |
#17 | ACCEPTED | 0.00 s | details |
#18 | ACCEPTED | 0.00 s | details |
#19 | ACCEPTED | 0.00 s | details |
#20 | ACCEPTED | 0.00 s | details |
#21 | ACCEPTED | 0.00 s | details |
#22 | ACCEPTED | 0.00 s | details |
#23 | ACCEPTED | 0.00 s | details |
#24 | ACCEPTED | 0.00 s | details |
#25 | ACCEPTED | 0.00 s | details |
#26 | ACCEPTED | 0.00 s | details |
#27 | ACCEPTED | 0.00 s | details |
#28 | WRONG ANSWER | 0.00 s | details |
#29 | ACCEPTED | 0.00 s | details |
#30 | WRONG ANSWER | 0.00 s | details |
#31 | WRONG ANSWER | 0.00 s | details |
#32 | WRONG ANSWER | 0.00 s | details |
#33 | WRONG ANSWER | 0.00 s | details |
#34 | WRONG ANSWER | 0.00 s | details |
#35 | ACCEPTED | 0.00 s | details |
#36 | WRONG ANSWER | 0.00 s | details |
#37 | WRONG ANSWER | 0.00 s | details |
#38 | WRONG ANSWER | 0.01 s | details |
#39 | WRONG ANSWER | 0.01 s | details |
#40 | WRONG ANSWER | 0.01 s | details |
#41 | WRONG ANSWER | 0.01 s | details |
#42 | WRONG ANSWER | 0.01 s | details |
#43 | WRONG ANSWER | 0.01 s | details |
#44 | WRONG ANSWER | 0.01 s | details |
#45 | WRONG ANSWER | 0.01 s | details |
#46 | WRONG ANSWER | 0.01 s | details |
#47 | WRONG ANSWER | 0.01 s | details |
#48 | WRONG ANSWER | 0.14 s | details |
#49 | WRONG ANSWER | 0.14 s | details |
#50 | WRONG ANSWER | 0.54 s | details |
#51 | WRONG ANSWER | 0.54 s | details |
#52 | WRONG ANSWER | 1.16 s | details |
#53 | TIME LIMIT EXCEEDED | -- | details |
Compiler report
input/code.cpp: In function 'void dfs(std::vector<bool>&, std::vector<std::vector<std::pair<long long int, long long int> > >&, long long int, long long int, long long int)': input/code.cpp:29:23: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare] 29 | for (int i = 0; i < adj[node].size(); i++) | ~~^~~~~~~~~~~~~~~~~~ input/code.cpp: In function 'void solve()': input/code.cpp:71:29: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare] 71 | for (int j = i+1; j < s.size(); j++) | ~~^~~~~~~~~~ input/code.cpp:93:23: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<bool>::size_type' {aka 'long unsign...
Code
#include <iostream> #include <vector> #include <array> #include <string> #include <algorithm> #include <numeric> #include <unordered_map> #include <unordered_set> #include <queue> #include <climits> #include <cmath> #include <functional> #include <type_traits> #include <bitset> #define int long long using namespace std; int COUNT = 0; vector<int> depths; void dfs(vector<bool>& visited, vector<vector<pair<int, int>>>& adj, int node, int parent, int depth) { //cout << "-- Node: " << node << endl; visited[node] = true; depths[node] = depth; unordered_map<int, int> neededDepths; for (int i = 0; i < adj[node].size(); i++) { if (adj[node][i].first == -1) continue; //cout << "Line " << adj[node][i].first << " " << adj[node][i].second << endl; int nDepth = depths[adj[node][i].first]; if (visited[adj[node][i].first]) { //if (depth == nDepth + 2) //{ // cout << "Found" << endl; // COUNT++; // adj[adj[node][i].first][adj[node][i].second] = {-1, -1}; //} if (neededDepths.find(nDepth) != neededDepths.end()) { //cout << "Found " << neededDepths[nDepth] << endl; //adj[adj[node][i].first][adj[node][i].second] = {-1, -1}; COUNT += neededDepths[nDepth]; } } else { dfs(visited, adj, adj[node][i].first, node, depth+1); } neededDepths[nDepth+1]++; neededDepths[nDepth-1]++; } } void solve() { int n; cin >> n; vector<vector<pair<int, int>>> adj(n, vector<pair<int, int>>()); for (int i = 0; i < n; i++) { string s; cin >> s; for (int j = i+1; j < s.size(); j++) if (s[j] == '1') { adj[i].push_back({j, adj[j].size()}); adj[j].push_back({i, adj[i].size()-1}); } } /* unordered_set<int> neighbors(n); for (int i = 0; i < n; i++) { neighbors.clear(); for (int j = 0; j < adj[i].size(); j++) neighbors.insert(adj[i][j]); } */ vector<bool> vis(n); depths.resize(n, 0); for (int i = 0; i < vis.size(); i++) { if (!vis[i]) dfs(vis, adj, i, -1, 0); } cout << COUNT; } signed main() { ios::sync_with_stdio(0); cin.tie(0); int t = 1; //cin >> t; for (int i = 0; i < t; i++) solve(); return 0; }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
1 0 |
correct output |
---|
0 |
user output |
---|
0 |
Test 2
Verdict: ACCEPTED
input |
---|
2 01 10 |
correct output |
---|
0 |
user output |
---|
0 |
Test 3
Verdict: ACCEPTED
input |
---|
2 01 10 |
correct output |
---|
0 |
user output |
---|
0 |
Test 4
Verdict: ACCEPTED
input |
---|
3 011 101 110 |
correct output |
---|
1 |
user output |
---|
1 |
Test 5
Verdict: ACCEPTED
input |
---|
3 010 101 010 |
correct output |
---|
0 |
user output |
---|
0 |
Test 6
Verdict: ACCEPTED
input |
---|
3 000 001 010 |
correct output |
---|
0 |
user output |
---|
0 |
Test 7
Verdict: ACCEPTED
input |
---|
3 011 100 100 |
correct output |
---|
0 |
user output |
---|
0 |
Test 8
Verdict: ACCEPTED
input |
---|
4 0111 1011 1101 1110 |
correct output |
---|
4 |
user output |
---|
4 |
Test 9
Verdict: ACCEPTED
input |
---|
4 0011 0010 1100 1000 |
correct output |
---|
0 |
user output |
---|
0 |
Test 10
Verdict: ACCEPTED
input |
---|
4 0000 0011 0101 0110 |
correct output |
---|
1 |
user output |
---|
1 |
Test 11
Verdict: ACCEPTED
input |
---|
4 0101 1010 0100 1000 |
correct output |
---|
0 |
user output |
---|
0 |
Test 12
Verdict: ACCEPTED
input |
---|
4 0111 1001 1001 1110 |
correct output |
---|
2 |
user output |
---|
2 |
Test 13
Verdict: ACCEPTED
input |
---|
4 0001 0010 0100 1000 |
correct output |
---|
0 |
user output |
---|
0 |
Test 14
Verdict: ACCEPTED
input |
---|
4 0110 1001 1000 0100 |
correct output |
---|
0 |
user output |
---|
0 |
Test 15
Verdict: ACCEPTED
input |
---|
4 0001 0000 0001 1010 |
correct output |
---|
0 |
user output |
---|
0 |
Test 16
Verdict: ACCEPTED
input |
---|
4 0101 1001 0000 1100 |
correct output |
---|
1 |
user output |
---|
1 |
Test 17
Verdict: ACCEPTED
input |
---|
4 0001 0000 0000 1000 |
correct output |
---|
0 |
user output |
---|
0 |
Test 18
Verdict: ACCEPTED
input |
---|
5 01111 10111 11010 11101 ... |
correct output |
---|
7 |
user output |
---|
7 |
Test 19
Verdict: ACCEPTED
input |
---|
5 00111 00000 10010 10100 ... |
correct output |
---|
1 |
user output |
---|
1 |
Test 20
Verdict: ACCEPTED
input |
---|
5 00001 00110 01000 01000 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 21
Verdict: ACCEPTED
input |
---|
5 01011 10001 00011 10100 ... |
correct output |
---|
1 |
user output |
---|
1 |
Test 22
Verdict: ACCEPTED
input |
---|
5 01110 10111 11011 11101 ... |
correct output |
---|
7 |
user output |
---|
7 |
Test 23
Verdict: ACCEPTED
input |
---|
5 00011 00001 00010 10100 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 24
Verdict: ACCEPTED
input |
---|
5 01100 10100 11000 00001 ... |
correct output |
---|
1 |
user output |
---|
1 |
Test 25
Verdict: ACCEPTED
input |
---|
5 00010 00011 00001 11000 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 26
Verdict: ACCEPTED
input |
---|
5 01010 10101 01010 10100 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 27
Verdict: ACCEPTED
input |
---|
5 00010 00000 00000 10000 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 28
Verdict: WRONG ANSWER
input |
---|
10 0111111110 1011000101 1100001110 1100101100 ... |
correct output |
---|
26 |
user output |
---|
17 |
Test 29
Verdict: ACCEPTED
input |
---|
10 0011100010 0000000010 1001110011 1010001001 ... |
correct output |
---|
11 |
user output |
---|
11 |
Test 30
Verdict: WRONG ANSWER
input |
---|
10 0000111000 0000001100 0000011111 0000001101 ... |
correct output |
---|
7 |
user output |
---|
11 |
Test 31
Verdict: WRONG ANSWER
input |
---|
10 0101100111 1001000000 0000010000 1100100010 ... |
correct output |
---|
9 |
user output |
---|
6 |
Test 32
Verdict: WRONG ANSWER
input |
---|
10 0111011111 1010010010 1101011001 1010101100 ... |
correct output |
---|
22 |
user output |
---|
17 |
Test 33
Verdict: WRONG ANSWER
input |
---|
10 0001100110 0001010100 0001010111 1110000110 ... |
correct output |
---|
11 |
user output |
---|
12 |
Test 34
Verdict: WRONG ANSWER
input |
---|
10 0110010000 1011011010 1100110110 0100101011 ... |
correct output |
---|
22 |
user output |
---|
18 |
Test 35
Verdict: ACCEPTED
input |
---|
10 0001001101 0001010000 0000011110 1100000101 ... |
correct output |
---|
13 |
user output |
---|
13 |
Test 36
Verdict: WRONG ANSWER
input |
---|
10 0101010110 1000101001 0001011011 1010101110 ... |
correct output |
---|
8 |
user output |
---|
10 |
Test 37
Verdict: WRONG ANSWER
input |
---|
10 0001000000 0000100000 0000000010 1000110111 ... |
correct output |
---|
19 |
user output |
---|
15 |
Test 38
Verdict: WRONG ANSWER
input |
---|
100 011111111011000101000111010110... |
correct output |
---|
20807 |
user output |
---|
2404 |
Test 39
Verdict: WRONG ANSWER
input |
---|
100 001110001000000010111001100100... |
correct output |
---|
21100 |
user output |
---|
2408 |
Test 40
Verdict: WRONG ANSWER
input |
---|
100 000011100000001100001111100110... |
correct output |
---|
18556 |
user output |
---|
2244 |
Test 41
Verdict: WRONG ANSWER
input |
---|
100 010110011101000000001000010001... |
correct output |
---|
20091 |
user output |
---|
2365 |
Test 42
Verdict: WRONG ANSWER
input |
---|
100 011101111110010010101100110110... |
correct output |
---|
21281 |
user output |
---|
2510 |
Test 43
Verdict: WRONG ANSWER
input |
---|
100 000110011001010100101011100011... |
correct output |
---|
20746 |
user output |
---|
2441 |
Test 44
Verdict: WRONG ANSWER
input |
---|
100 011001000011011010011011010101... |
correct output |
---|
21793 |
user output |
---|
2472 |
Test 45
Verdict: WRONG ANSWER
input |
---|
100 000100110101010000001111000010... |
correct output |
---|
19781 |
user output |
---|
2376 |
Test 46
Verdict: WRONG ANSWER
input |
---|
100 010101011000101001101101110111... |
correct output |
---|
20006 |
user output |
---|
2357 |
Test 47
Verdict: WRONG ANSWER
input |
---|
100 000100000000100000000001011011... |
correct output |
---|
19161 |
user output |
---|
2345 |
Test 48
Verdict: WRONG ANSWER
input |
---|
1000 011111111011000101000111010110... |
correct output |
---|
20823418 |
user output |
---|
248914 |
Test 49
Verdict: WRONG ANSWER
input |
---|
1000 001110001000000010111001100100... |
correct output |
---|
20848491 |
user output |
---|
252048 |
Test 50
Verdict: WRONG ANSWER
input |
---|
2000 010001011010001100000111100111... |
correct output |
---|
166808034 |
user output |
---|
998018 |
Test 51
Verdict: WRONG ANSWER
input |
---|
2000 000010011000001011011110111110... |
correct output |
---|
165842024 |
user output |
---|
994557 |
Test 52
Verdict: WRONG ANSWER
input |
---|
2999 000110011001010001100011110110... |
correct output |
---|
561389670 |
user output |
---|
2246012 |
Test 53
Verdict: TIME LIMIT EXCEEDED
input |
---|
3000 011111111111111111111111111111... |
correct output |
---|
4495501000 |
user output |
---|
(empty) |