# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
600020 | 2022-07-20T11:52:45 Z | PiejanVDC | Sorting (IOI15_sorting) | C++17 | 1000 ms | 364 KB |
#include "sorting.h" #include <bits/stdc++.h> using namespace std; int findSwapPairs(int n, int s[], int m, int X[], int Y[], int P[], int Q[]) { auto sorted = [&] () -> bool { for(int i = 0 ; i < n ; i++) if(s[i] != i) return 0; return 1; }; for(int T = 1 ; T <= m ; T++) { vector<int>c(n); for(int i = 0 ; i < n ; i++) c[i]= i; for(int i = 0 ; i < T ; i++) swap(c[X[i]], c[Y[i]]); vector<int>go(n); for(int i = 0 ; i < n ; i++) { go[c[i]] = i; } vector<int>v(n); auto S = [&] (int W) { for(int i = 0 ; i < n ; i++) if(v[i] == W) return i; assert(0); }; for(int i = 0 ; i < n ; i++) v[i] = s[i]; int cnt = 0; for(int i = 0 ; i < T ; i++) { cnt++; swap(v[X[i]], v[Y[i]]); swap(go[X[i]], go[Y[i]]); int j; for(j = 0 ; j < n ; j++) { if(go[j] != v[j]) { int p = S(go[j]); P[cnt-1] = p; Q[cnt-1] = i; swap(v[p], v[j]); break; } } if(j == n) P[cnt] = 0, Q[cnt] = 0; // do the swappings // look for first element not correct in go } if(sorted()) return cnt; } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Runtime error | 1 ms | 340 KB | Execution killed with signal 6 |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Runtime error | 1 ms | 340 KB | Execution killed with signal 6 |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Runtime error | 1 ms | 340 KB | Execution killed with signal 6 |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Runtime error | 1 ms | 340 KB | Execution killed with signal 6 |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1076 ms | 364 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1076 ms | 364 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |