# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
795529 | 2023-07-27T10:57:43 Z | Josia | Sorting (IOI15_sorting) | C++17 | 2 ms | 340 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[]) { if (N == 1) return 0; vector<int> S(N); for (int i = 0; i<N; i++) S[i] = _S[i]; for (int i = 0; i<N; i++) { for (int j = 0; j<N; j++) { if (S[j] == i) { swap(S[i], S[j]); P[i-2]=i; Q[i-2]=j; break; } } } return N-1; } // int findSwapPairs(int N, int _S[], int M, int X[], int Y[], int P[], int Q[]) { // if (N == 1) return 0; // vector<int> S(N); // for (int i = 0; i<N; i++) S[i] = _S[i]; // for (int i = 2; i<N; i++) { // swap(S[X[i-2]], S[Y[i-2]]); // for (int j = 0; j<N; j++) { // if (S[j] == i) { // swap(S[i], S[j]); // P[i-2]=i; // Q[i-2]=j; // break; // } // } // } // if (S[0] == 0) return N-2; // swap(S[X[N-2]], S[Y[N-2]]); // if (S[0] == 0) {P[N-2]=0;Q[N-2]=0;} // else {P[N-2]=0;Q[N-2]=1;} // return N-1; // }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Incorrect | 0 ms | 212 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Incorrect | 0 ms | 212 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Incorrect | 0 ms | 212 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |