Task: | Vaihdot |
Sender: | Olli |
Submission time: | 2020-09-06 20:44:15 +0300 |
Language: | C++ (C++11) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
#2 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
#3 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
#4 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
#5 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
#6 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
#7 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
#8 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
#9 | ACCEPTED | 0.02 s | 2, 3 | details |
#10 | WRONG ANSWER | 0.02 s | 2, 3 | details |
#11 | ACCEPTED | 0.02 s | 2, 3 | details |
#12 | WRONG ANSWER | 0.03 s | 2, 3 | details |
#13 | WRONG ANSWER | 0.03 s | 2, 3 | details |
#14 | WRONG ANSWER | 0.03 s | 2, 3 | details |
#15 | WRONG ANSWER | 0.03 s | 2, 3 | details |
#16 | WRONG ANSWER | 0.03 s | 2, 3 | details |
#17 | ACCEPTED | 0.32 s | 3 | details |
#18 | WRONG ANSWER | 0.27 s | 3 | details |
#19 | ACCEPTED | 0.36 s | 3 | details |
#20 | ACCEPTED | 0.36 s | 3 | details |
#21 | WRONG ANSWER | 0.38 s | 3 | details |
#22 | WRONG ANSWER | 0.46 s | 3 | details |
#23 | WRONG ANSWER | 0.84 s | 3 | details |
#24 | WRONG ANSWER | 0.92 s | 3 | details |
Compiler report
input/code.cpp: In function 'int getAm(int, int)': input/code.cpp:76:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i = 0; i < in[y+C].size(); ++i) { ~~^~~~~~~~~~~~~~~~ input/code.cpp:94:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int j = 0; j < beg[i].size(); ++j) { ~~^~~~~~~~~~~~~~~ input/code.cpp:98:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int j = 0; j < en[i].size(); ++j) { ~~^~~~~~~~~~~~~~ input/code.cpp:103:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] while(I < in[x+C].size() && in[x+C][I].F == i) { ~~^~~~~~~~~~~~~~~~
Code
//Muista, että self-inversiot tulee vahingossa laskettua #include <iostream> #include <vector> #include <algorithm> using namespace std; const int N = 2e5 + 5; const int M = 262144; #define F first #define S second int ne[N]; int t[N]; int am[5]; const int C = 2; typedef pair<int, int> pii; vector<pair<int, pii>> in[10]; int n; int seg[2*M]; vector<int> beg[N]; vector<int> en[N]; int getSum(int a, int b) { a+=M; b+=M; int s = 0; while(a <= b) { if(a%2 == 1) { s += seg[a]; ++a; } if(b%2 == 0) { s += seg[b]; --b; } a/=2; b/=2; } return s; } void upd(int i, int x) { i+=M; seg[i] += x; i/=2; while(i > 0) { seg[i] = seg[2*i] + seg[2*i + 1]; i/=2; } } int getAm(int x, int y) { if(in[x+C].size() == 0 || in[y+C].size() == 0) return 0; //Get the number of pairs with gains x and y int ans = 0; for(int i = 0; i <= n+2; ++i) { beg[i].clear(); en[i].clear(); } for(int i = 0; i < in[y+C].size(); ++i) { int Y = in[y+C][i].F; int a = in[y+C][i].S.F; if(a == -1) a = 0; int b = in[y+C][i].S.S; beg[a].push_back(Y); en[b+1].push_back(Y); } for(int i = 1; i < 2*M; ++i) { seg[i] = 0; } int i = 0; int I = 0; while(i <= n) { for(int j = 0; j < beg[i].size(); ++j) { upd(beg[i][j], 1); // cout << "Add 1 to " << beg[i][j] << "\n"; } for(int j = 0; j < en[i].size(); ++j) { upd(en[i][j], -1); // cout << "Erase 1 from " << en[i][j] << "\n"; } while(I < in[x+C].size() && in[x+C][I].F == i) { // cout << "Here " << i << "\n"; // cout << in[x+C][I].S.F << " " << in[x+C][I].S.S << "\n"; ans += getSum(in[x+C][I].S.F, in[x+C][I].S.S); ++I; } ++i; } return ans; } int main() { cin >> n; for(int i = 1; i <= n; ++i) { cin >> t[i]; } for(int i = 1; i <= n; ++i) { ne[t[i]] = i; } ne[n+1] = n+1; int inc = 0; for(int i = 1; i <= n+1; ++i) { if(ne[i] < ne[i-1]) ++inc; } ++inc; // cout << inc << "\n"; /* Check if one swaps i and i+1 */ for(int i = 0; i <= n+1; ++i) { // cout << ne[i] << " "; } // cout << "\n"; for(int i = 1; i <= n-1; ++i) { //Swap i and i+1 if(ne[i-1] < ne[i]) { if(ne[i+1] < ne[i-1]) { if(ne[i+2] > ne[i]) { ++am[0+C]; } else { ++am[-1+C]; } } else if(ne[i+1] < ne[i]) { if(ne[i+2] > ne[i+1] && ne[i+2] < ne[i]) { ++am[0+C]; } else { ++am[1+C]; } } else { if(ne[i+2] < ne[i+1] && ne[i+2] > ne[i]) { ++am[0+C]; } else { ++am[-1+C]; } } } else { if(ne[i+1] < ne[i]) { if(ne[i+2] < ne[i+1]) { ++am[1+C]; } else if (ne[i+2] < ne[i]) { ++am[0+C]; } else { ++am[2+C]; } } else if(ne[i+1] < ne[i-1]) { if(ne[i+2] > ne[i] && ne[i+2] < ne[i+1]) { ++am[0+C]; } else { ++am[-1+C]; } } else { if(ne[i+2] > ne[i] && ne[i+2] < ne[i+1]) { ++am[1+C]; } else { ++am[0+C]; } } } } /* Do interval decomposition */ for(int i = 1; i <= n; ++i) { int a = ne[i-1]; int b = ne[i]; int c = ne[i+1]; if(a < c) { if(a < b && b < c) { in[0+C].push_back({b, {a+1, b-1}}); in[0+C].push_back({b, {b+1, c-1}}); in[-1+C].push_back({b, {-1, a-1}}); in[-1+C].push_back({b, {c+1, n+2}}); } else if (b < a) { in[1+C].push_back({b, {a+1, c-1}}); in[0+C].push_back({b, {-1, b-1}}); in[0+C].push_back({b, {b+1, a-1}}); in[0+C].push_back({b, {c+1, n+2}}); } else { in[1+C].push_back({b, {a+1, c-1}}); in[0+C].push_back({b, {c+1, b-1}}); in[0+C].push_back({b, {b+1, n+2}}); in[0+C].push_back({b, {-1, a-1}}); } } else { if(b > a) { in[-1+C].push_back({b, {c+1, a-1}}); in[0+C].push_back({b, {a+1, b-1}}); in[0+C].push_back({b, {b+1, n+2}}); } else if (c < b) { in[0+C].push_back({b, {c+1, b-1}}); in[0+C].push_back({b, {b+1, a-1}}); in[1+C].push_back({b, {a+1, n+2}}); in[1+C].push_back({b, {-1, c-1}}); } else { in[0+C].push_back({b, {-1, b-1}}); in[0+C].push_back({b, {b+1, c-1}}); in[-1+C].push_back({b, {c+1, a-1}}); in[0+C].push_back({b, {a+1, n+2}}); } } } for(int i = -1; i <= 1; ++i) { sort(in[i+C].begin(), in[i+C].end()); } /* for(int i = 0; i < in[1+C].size(); ++i) { cout << in[1+C][i].F << " " << in[1+C][i].S.F << " " << in[1+C][i].S.S << "\n"; } cout << "\n\n"; for(int i = 0; i < in[0+C].size(); ++i) { cout << in[0+C][i].F << " " << in[0+C][i].S.F << " " << in[0+C][i].S.S << "\n"; } cout << getAm(0, 1) << "\n"; return 0; */ /* Check the number of interval pairings Requires a "sweeping line" technique and a segment tree (Do this with a function so all pairs can be handled at once) */ for(int x = -1; x <= 1; ++x) { for(int y = x; y <= 1; ++y) { int c = 1; if(x == y) c = 2; am[x+y+C] += getAm(x, y)/c; // cout << x << " " << y << " " << getAm(x, y) << "\n"; } } for(int i = 2; i >= -2; --i) { if(am[i+C] > 0) { cout << inc - i << " " << am[i+C] << "\n"; return 0; } } }
Test details
Test 1
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
100 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
2 99 |
user output |
---|
2 99 |
Test 2
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
100 100 99 98 97 96 95 94 93 92 91... |
correct output |
---|
98 4851 |
user output |
---|
98 4852 |
Test 3
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
100 1 2 88 4 5 6 7 8 9 10 11 12 13... |
correct output |
---|
16 5 |
user output |
---|
16 5 |
Test 4
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
100 51 48 74 70 45 71 24 88 55 99 ... |
correct output |
---|
49 131 |
user output |
---|
49 142 |
Test 5
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
100 45 67 29 62 70 77 41 74 52 95 ... |
correct output |
---|
52 268 |
user output |
---|
52 279 |
Test 6
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
100 47 98 2 75 6 21 84 8 4 89 27 9... |
correct output |
---|
48 149 |
user output |
---|
48 156 |
Test 7
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
100 73 68 17 94 71 63 61 13 58 10 ... |
correct output |
---|
47 116 |
user output |
---|
47 125 |
Test 8
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
100 17 16 45 94 6 1 36 81 31 13 51... |
correct output |
---|
45 95 |
user output |
---|
45 103 |
Test 9
Group: 2, 3
Verdict: ACCEPTED
input |
---|
5000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
2 4999 |
user output |
---|
2 4999 |
Test 10
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 5000 4999 4998 4997 4996 4995 ... |
correct output |
---|
4998 12492501 |
user output |
---|
4998 12492502 |
Test 11
Group: 2, 3
Verdict: ACCEPTED
input |
---|
5000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
19 10 |
user output |
---|
19 10 |
Test 12
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 1 2 3 4 5 6 264 8 9 10 11 12 1... |
correct output |
---|
190 96 |
user output |
---|
190 100 |
Test 13
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 1 2 3 4 5 6 7 8 9 2400 11 12 1... |
correct output |
---|
1378 27938 |
user output |
---|
1378 28068 |
Test 14
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 4012 2 4820 4208 1868 1728 362... |
correct output |
---|
2511 436307 |
user output |
---|
2511 436708 |
Test 15
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 3877 3972 1112 3669 1959 4640 ... |
correct output |
---|
2497 417065 |
user output |
---|
2497 417458 |
Test 16
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
5000 2774 998 4525 2884 487 1995 41... |
correct output |
---|
2518 426448 |
user output |
---|
2518 426892 |
Test 17
Group: 3
Verdict: ACCEPTED
input |
---|
200000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
2 199999 |
user output |
---|
2 199999 |
Test 18
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 200000 199999 199998 199997 19... |
correct output |
---|
199998 19999700001 |
user output |
---|
199998 672347170 |
Test 19
Group: 3
Verdict: ACCEPTED
input |
---|
200000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
19 10 |
user output |
---|
19 10 |
Test 20
Group: 3
Verdict: ACCEPTED
input |
---|
200000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
199 100 |
user output |
---|
199 100 |
Test 21
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
1979 1030 |
user output |
---|
1979 1036 |
Test 22
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 1 2 184153 4 5 6 7 8 164545 10... |
correct output |
---|
18081 477187 |
user output |
---|
18081 477725 |
Test 23
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 151013 68675 119105 58292 3335... |
correct output |
---|
86328 318722426 |
user output |
---|
86328 318734800 |
Test 24
Group: 3
Verdict: WRONG ANSWER
input |
---|
200000 11562 33356 106752 170825 2723... |
correct output |
---|
99873 663048119 |
user output |
---|
99873 663064734 |