# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1108069 | 2024-11-02T16:22:11 Z | Aviansh | Sorting (IOI15_sorting) | C++17 | 83 ms | 77688 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[]) { int be[n]; int tp[n]; copy(s,s+n,tp); iota(be,be+n,0); int ber[m][n]; for(int i = m-1;i>=0;i--){ swap(be[x[i]],be[y[i]]); for(int j = 0;j<n;j++){ ber[i][be[j]]=j; } } int r = 0; for(int i = 0;i<n;i++){ swap(s[x[i]],s[y[i]]); int ind = find(s,s+n,i)-s; swap(s[ind],s[ber[r+1][i]]); p[r]=ind; q[r]=(ber[r+1][i]); r++; } assert(r<=m); for(;r<m;r++){ p[r]=0; q[r]=0; swap(s[x[r]],s[y[r]]); } for(int i = 0;i<r;i++){ swap(tp[p[i]],tp[q[i]]); } assert(r<=m); for(int i = 0;i<n;i++){ assert(tp[i]==i); } return r; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 336 KB | Output is correct |
2 | Correct | 1 ms | 348 KB | Output is correct |
3 | Correct | 0 ms | 336 KB | Output is correct |
4 | Incorrect | 1 ms | 336 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 336 KB | Output is correct |
2 | Correct | 1 ms | 348 KB | Output is correct |
3 | Correct | 0 ms | 336 KB | Output is correct |
4 | Incorrect | 1 ms | 336 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 336 KB | Output is correct |
2 | Correct | 1 ms | 336 KB | Output is correct |
3 | Runtime error | 4 ms | 2672 KB | Execution killed with signal 6 |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 336 KB | Output is correct |
2 | Correct | 1 ms | 348 KB | Output is correct |
3 | Correct | 0 ms | 336 KB | Output is correct |
4 | Incorrect | 1 ms | 336 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 83 ms | 77688 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 83 ms | 77688 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |