# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
434552 | 2021-06-21T11:56:50 Z | ismoilov | Sorting (IOI15_sorting) | C++14 | 6 ms | 332 KB |
#include "sorting.h" #include <bits/stdc++.h> using namespace std; bool check(int a[], int n){ for(int i = 0; i < n; i ++) if(a[i] != i) return 0; return 1; } int findSwapPairs(int n, int s[], int m, int x[], int y[], int p[], int q[]) { while(!check(s, n)){ for(int i = 0; i < n; i ++){ for(int j = 0; j < n; j ++){ if(s[j] == i){ swap(s[j], s[i]); p[i] = i, q[i] = j; } } } } return n; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 204 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 6 ms | 332 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 6 ms | 332 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |