Submission #302533

#TimeUsernameProblemLanguageResultExecution timeMemory
302533square1001Sorting (IOI15_sorting)C++14
20 / 100
6 ms512 KiB
#include "sorting.h" #include <random> #include <vector> #include <cassert> #include <iostream> #include <algorithm> using namespace std; mt19937 mt(2009190008); int rand_rng(int l, int r) { uniform_int_distribution<int> p(l, r - 1); return p(mt); } int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) { fill(P, P + M, 0); fill(Q, Q + M, 0); if(is_sorted(S, S + N)) { return 0; } int pl = 0, pr = M; while(pr - pl > 1) { int pm = (pl + pr) >> 1; vector<int> T(S, S + N); for(int i = 0; i < N; ++i) { swap(T[X[i]], T[Y[i]]); } vector<bool> vis(N, false); int cycles = 0; for(int i = 0; i < N; ++i) { if(vis[i]) continue; int pos = i; ++cycles; while(!vis[pos]) { vis[pos] = true; pos = T[pos]; } } int steps = N - cycles; if(pm >= steps) pr = pm; else pl = pm; } int L = pr; for(int i = 0; i < L; ++i) { swap(S[X[i]], S[Y[i]]); } vector<bool> vis2(N, false); int cl = 0; for(int i = 0; i < N; ++i) { if(vis2[i]) continue; vector<int> path; int pos = i; while(!vis2[pos]) { path.push_back(pos); vis2[pos] = true; pos = S[pos]; } for(int j = int(path.size()) - 1; j >= 1; --j) { P[cl] = path[j - 1]; Q[cl] = path[j]; ++cl; } } for(int i = 0; i < L; ++i) { if(P[i] == Q[i]) continue; for(int j = L - 1; j >= i + 1; --j) { if(X[j] == Y[j]) continue; if(X[j] == P[i] && Y[j] != Q[i]) { P[i] = Y[j]; } else if(X[j] == Q[i] && Y[j] != P[i]) { Q[i] = Y[j]; } else if(Y[j] == P[i] && X[j] != Q[i]) { P[i] = X[j]; } else if(Y[j] == Q[i] && X[j] != P[i]) { Q[i] = X[j]; } } } return L; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...