Task: | Niitty |
Sender: | anotn |
Submission time: | 2024-11-06 20:24:03 +0200 |
Language: | C++ (C++17) |
Status: | READY |
Result: | 58 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 4 |
#2 | ACCEPTED | 6 |
#3 | ACCEPTED | 10 |
#4 | ACCEPTED | 13 |
#5 | ACCEPTED | 25 |
#6 | TIME LIMIT EXCEEDED | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5, 6 | details |
#2 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5, 6 | details |
#3 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5, 6 | details |
#4 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5, 6 | details |
#5 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5, 6 | details |
#6 | ACCEPTED | 0.00 s | 2, 3, 4, 5, 6 | details |
#7 | ACCEPTED | 0.00 s | 2, 3, 4, 5, 6 | details |
#8 | ACCEPTED | 0.00 s | 2, 3, 4, 5, 6 | details |
#9 | ACCEPTED | 0.00 s | 2, 3, 4, 5, 6 | details |
#10 | ACCEPTED | 0.01 s | 3, 4, 5, 6 | details |
#11 | ACCEPTED | 0.01 s | 3, 4, 5, 6 | details |
#12 | ACCEPTED | 0.00 s | 3, 4, 5, 6 | details |
#13 | ACCEPTED | 0.00 s | 3, 4, 5, 6 | details |
#14 | ACCEPTED | 0.01 s | 4, 5, 6 | details |
#15 | ACCEPTED | 0.03 s | 4, 5, 6 | details |
#16 | ACCEPTED | 0.01 s | 4, 5, 6 | details |
#17 | ACCEPTED | 0.01 s | 4, 5, 6 | details |
#18 | ACCEPTED | 0.03 s | 5, 6 | details |
#19 | ACCEPTED | 0.13 s | 5, 6 | details |
#20 | ACCEPTED | 0.01 s | 5, 6 | details |
#21 | ACCEPTED | 0.08 s | 5, 6 | details |
#22 | ACCEPTED | 0.14 s | 6 | details |
#23 | ACCEPTED | 0.94 s | 6 | details |
#24 | ACCEPTED | 0.05 s | 6 | details |
#25 | TIME LIMIT EXCEEDED | -- | 6 | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:67:10: warning: variable 'start' set but not used [-Wunused-but-set-variable] 67 | auto start = chrono::high_resolution_clock::now(); | ^~~~~ input/code.cpp:141:10: warning: variable 'stop' set but not used [-Wunused-but-set-variable] 141 | auto stop = chrono::high_resolution_clock::now(); | ^~~~
Code
#include <iostream> #include <vector> #include <chrono> using namespace std; using ll = long long; int tree_size = 1; int tree_range( vector<int>& tree, int a, int b ) { a += tree_size; b += tree_size; int s = 0; while (a <= b) { if (a%2 == 1) s |= tree[a++]; if (b%2 == 0) s |= tree[b--]; a /= 2; b /= 2; } return s; } void tree_insert ( vector<int>& tree, int x, int i ) { i += tree_size; tree[i] = x; for ( i /= 2; i >= 1; i /= 2 ) tree[i] = tree[i*2] | tree[i*2+1]; } int main () { int n; cin >> n; while ( tree_size < n ) tree_size <<= 1; vector<vector<int>> field(n, vector<int>(2*tree_size, 0)); vector<vector<int>> field_vertical(n, vector<int>(2*tree_size, 0)); int flowers = 0; for ( int i = 0; i < n; ++i ) { for ( int j = 0; j < n; j++ ) { char c; cin >> c; int a = 1<<(c-'A'); tree_insert(field[i], a, j); tree_insert(field_vertical[j], a, i); flowers |= a; } } ll count = 0; auto start = chrono::high_resolution_clock::now(); for ( int y1 = 0; y1 < n; ++y1 ) { ll prevcounty = count; for ( int x1 = 0; x1 < n; ++x1 ) { int xceil = n; int yprev = y1; int xvals[n]; xvals[n-1] = 0; ll prevcountx = count; while ( xceil > x1 ) { int x2 = xceil-1; int y2 = yprev; int current = xvals[x2]; while ( y2 < n && current != flowers ) { int a = x1+tree_size; int b = x2+tree_size; while (a <= b) { if (a%2 == 1) current |= field[y2][a++]; if (b%2 == 0) current |= field[y2][b--]; a /= 2; b /= 2; } y2++; } if ( current != flowers ) break; y2 -= current == flowers; x2 = x1; current = 0; while ( x2 < xceil && current != flowers ) { int a = y1+tree_size; int b = y2+tree_size; while (a <= b) { if (a%2 == 1) current |= field_vertical[x2][a++]; if (b%2 == 0) current |= field_vertical[x2][b--]; a /= 2; b /= 2; } xvals[x2] = current; x2++; } if ( current != flowers ) break; x2 -= current == flowers; count += ll(xceil - x2) * ll(n - y2); xceil = x2; yprev = y2; } if ( (count - prevcountx) == 0 ) break; } if ( (count - prevcounty) == 0 ) break; } cout << count; auto stop = chrono::high_resolution_clock::now(); //cout << "\n" << chrono::duration_cast<chrono::milliseconds>(stop - start).count() << " ms"; }
Test details
Test 1
Group: 1, 2, 3, 4, 5, 6
Verdict: ACCEPTED
input |
---|
10 TNCTNPNTPC NPPNTNTPTP NTNTTCNTCT NPCPNPPNTT ... |
correct output |
---|
2035 |
user output |
---|
2035 |
Test 2
Group: 1, 2, 3, 4, 5, 6
Verdict: ACCEPTED
input |
---|
10 NFWQLWNWYS DZOQJVXFPJ CNHXPXMCQD QRTBVNLTQC ... |
correct output |
---|
9 |
user output |
---|
9 |
Test 3
Group: 1, 2, 3, 4, 5, 6
Verdict: ACCEPTED
input |
---|
10 XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX ... |
correct output |
---|
3025 |
user output |
---|
3025 |
Test 4
Group: 1, 2, 3, 4, 5, 6
Verdict: ACCEPTED
input |
---|
10 FFFFFFFFFF FFFFFCFFFF FFFFFFJFFF FFFFFFFFFF ... |
correct output |
---|
12 |
user output |
---|
12 |
Test 5
Group: 1, 2, 3, 4, 5, 6
Verdict: ACCEPTED
input |
---|
1 X |
correct output |
---|
1 |
user output |
---|
1 |
Test 6
Group: 2, 3, 4, 5, 6
Verdict: ACCEPTED
input |
---|
20 BBCBUBOUOBBCUUBBCOUO BOUCOOCUBCOOOCOBOCUO UCCUUUOBCOCBCBUBUCOO BUOBUCUCUOOBCOOUBUOO ... |
correct output |
---|
38724 |
user output |
---|
38724 |
Test 7
Group: 2, 3, 4, 5, 6
Verdict: ACCEPTED
input |
---|
20 CBGLSHGZHYZDWBNDBJUG SMUXOJQYPXZDTMJUIWOJ XIDSTNBGHKRKOVUVMINB MTQGCFRUHQKALXRNCQGS ... |
correct output |
---|
8334 |
user output |
---|
8334 |
Test 8
Group: 2, 3, 4, 5, 6
Verdict: ACCEPTED
input |
---|
20 KKKKKKKKKKKKKKKKKKKK KKKKKKKKKKKKKKKKKKKK KKKKKKKKKKKKKKKKKKKK KKKKKKKKKKKKKKKKKKKK ... |
correct output |
---|
44100 |
user output |
---|
44100 |
Test 9
Group: 2, 3, 4, 5, 6
Verdict: ACCEPTED
input |
---|
20 AAAAAAAAXAAAAAAAAAAA AAAWAAAAAAAAAAAAAOAA AAAAAAAAAAAAAAAAAPAA AAAAAAAAKAAAAAAAAAAZ ... |
correct output |
---|
18 |
user output |
---|
18 |
Test 10
Group: 3, 4, 5, 6
Verdict: ACCEPTED
input |
---|
50 GRGREEEGREGXRXXEGXXREXGRRRGRRR... |
correct output |
---|
1584665 |
user output |
---|
1584665 |
Test 11
Group: 3, 4, 5, 6
Verdict: ACCEPTED
input |
---|
50 AITIISJUHCCRZNKSDCNQKYSQRINFWJ... |
correct output |
---|
1077746 |
user output |
---|
1077746 |
Test 12
Group: 3, 4, 5, 6
Verdict: ACCEPTED
input |
---|
50 OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO... |
correct output |
---|
1625625 |
user output |
---|
1625625 |
Test 13
Group: 3, 4, 5, 6
Verdict: ACCEPTED
input |
---|
50 FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF... |
correct output |
---|
1680 |
user output |
---|
1680 |
Test 14
Group: 4, 5, 6
Verdict: ACCEPTED
input |
---|
100 NNCMDCDDCCNNNDNCMMNCDCDCCDCDNM... |
correct output |
---|
25325366 |
user output |
---|
25325366 |
Test 15
Group: 4, 5, 6
Verdict: ACCEPTED
input |
---|
100 LIMQQIHASECROEVILNVULGWZJPPKOG... |
correct output |
---|
22342463 |
user output |
---|
22342463 |
Test 16
Group: 4, 5, 6
Verdict: ACCEPTED
input |
---|
100 TTTTTTTTTTTTTTTTTTTTTTTTTTTTTT... |
correct output |
---|
25502500 |
user output |
---|
25502500 |
Test 17
Group: 4, 5, 6
Verdict: ACCEPTED
input |
---|
100 QXQQQQQQQQQQQQQQQQQQQQQQQQQQQQ... |
correct output |
---|
25650 |
user output |
---|
25650 |
Test 18
Group: 5, 6
Verdict: ACCEPTED
input |
---|
200 NAANANMMKNKKAKMKMAKNKMNKMMNNAA... |
correct output |
---|
403292767 |
user output |
---|
403292767 |
Test 19
Group: 5, 6
Verdict: ACCEPTED
input |
---|
200 OMYWATTLURKQPTKEFMGGYAOONXWVSC... |
correct output |
---|
388111321 |
user output |
---|
388111321 |
Test 20
Group: 5, 6
Verdict: ACCEPTED
input |
---|
200 CCCCCCCCCCCCCCCCCCCCCCCCCCCCCC... |
correct output |
---|
404010000 |
user output |
---|
404010000 |
Test 21
Group: 5, 6
Verdict: ACCEPTED
input |
---|
200 LLLLLLLLLLLLLLLLLHLLLLLLLLLLLL... |
correct output |
---|
14159445 |
user output |
---|
14159445 |
Test 22
Group: 6
Verdict: ACCEPTED
input |
---|
500 VVHWVUHVHUWWWVUUUWVUUHUUWHWUVW... |
correct output |
---|
15683003812 |
user output |
---|
15683003812 |
Test 23
Group: 6
Verdict: ACCEPTED
input |
---|
500 OIMZGEQSBMBDSDXSWRFNKSGFEBBTJE... |
correct output |
---|
15575906951 |
user output |
---|
15575906951 |
Test 24
Group: 6
Verdict: ACCEPTED
input |
---|
500 IIIIIIIIIIIIIIIIIIIIIIIIIIIIII... |
correct output |
---|
15687562500 |
user output |
---|
15687562500 |
Test 25
Group: 6
Verdict: TIME LIMIT EXCEEDED
input |
---|
500 WWWWWWWWWWWWWWWWWWWWWWWWWWWWWW... |
correct output |
---|
3058970930 |
user output |
---|
(empty) |