# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1040178 | 2024-07-31T17:41:35 Z | Zicrus | Sorting (IOI15_sorting) | C++17 | 1000 ms | 348 KB |
#pragma GCC optimize("O3","unroll-loops") #pragma GCC target("avx2,bmi,bmi2,popcnt,lzcnt") #include <bits/stdc++.h> #include "sorting.h" using namespace std; typedef int ll; int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P1[], int Q1[]) { vector<ll> h(N); for (int i = 0; i < N; i++) h[i] = S[i]; ll ooo = 0; for (int i = 0; i < N; i++) { if (h[i] != i) ooo++; } if (ooo == 0) return 0; vector<int> P(N), Q(N); // vector<ll> revH(N); for (int i = 0; i < N; i++) { revH[h[i]] = i; } ll res1 =0; ll low = 1, high = N; while (low < high) { ll g = (low + high) * 2 / 3; ll res = 0; vector<ll> s = h; vector<ll> order = s; vector<ll> revOrd = revH, revS = revH; for (int j = 0; j < g; j++) { swap(order[X[j]], order[Y[j]]); swap(revOrd[order[X[j]]], revOrd[order[Y[j]]]); } int id1 = -1; for (int i = 0; i < g; i++) { swap(s[X[i]], s[Y[i]]); swap(revS[s[X[i]]], revS[s[Y[i]]]); int firstOut = -1, id = -1; for (int j = id1+1; j < N; j++) { if (order[j] != j) { firstOut = order[id = j]; break; } } id1 = id; if (firstOut == -1) { P[res] = Q[res] = 0; res++; } else { ll iter = revOrd[id]; ll v = order[iter]; ll id1 = revS[firstOut]; ll id2 = revS[v]; swap(s[id1], s[id2]); swap(revS[s[id1]], revS[s[id2]]); swap(order[iter], order[id]); swap(revOrd[order[iter]], revOrd[order[id]]); P[res] = id1; Q[res] = id2; res++; } } ll ooo = 0; for (int i = g; i < N; i++) { if (s[i] != i) ooo++; } if (ooo == 0) { res1 = res; high = res; for (int i = 0; i < res; i++) { P1[i] = P[i]; Q1[i] = Q[i]; } }else { low = g+1; } } return res1; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Execution timed out | 1093 ms | 348 KB | Time limit exceeded |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Execution timed out | 1093 ms | 348 KB | Time limit exceeded |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Execution timed out | 1076 ms | 348 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Execution timed out | 1093 ms | 348 KB | Time limit exceeded |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1012 ms | 348 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1012 ms | 348 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |