Submission #428005

#TimeUsernameProblemLanguageResultExecution timeMemory
428005haxormanSorting (IOI15_sorting)C++14
20 / 100
254 ms352 KiB
#include "sorting.h" #include "bits/stdc++.h" using namespace std; const int mxN = 2e5 + 7; int n, m, arr[mxN]; int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) { n = N, m = M; for (int i = 0; i < n; ++i) { arr[i] = S[i]; } sort(S, S + n); int R = 0, ind = 0; bool subtask_3 = (Y[ind] != 0); int start = 0; if (subtask_3) { for (int i = 0; i < 2; ++i) { for (int j = 0; j < n; ++j) { if (arr[j] == S[i] && j != 1) { swap(arr[j], arr[1]); P[ind] = j, Q[ind] = 1; ++R; ++ind; break; } } } start = 2; } for (int iter = 1; iter <= 50; ++iter) { for (int i = start; i < n; ++i) { for (int j = 0; j < n; ++j) { if (arr[j] == S[i] && i != j) { swap(arr[j], arr[i]); P[ind] = j, Q[ind] = i; ++R; ++ind; break; } } } swap(arr[X[ind]], arr[Y[ind]]); } if (subtask_3) { for (int i = 0; i < R; ++i) { swap(arr[0], arr[1]); } } if (arr[0] != 0) { P[ind] = 0, Q[ind] = 1; ++R; ++ind; } return R; }
#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...