Submission #572515

#TimeUsernameProblemLanguageResultExecution timeMemory
572515MohamedFaresNebiliSorting (IOI15_sorting)C++14
74 / 100
1036 ms17616 KiB
#include <bits/stdc++.h> #include "sorting.h" #include <ext/pb_ds/assoc_container.hpp> using namespace std; using namespace __gnu_pbds; using ll = long long; using ii = pair<int, int>; using vi = vector<int>; #define pb push_back #define pp pop_back #define ff first #define ss second #define lb lower_bound #define all(x) (x).begin(), (x).end() typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> indexed_set; bool can(int N, int S[], int M, int X[], int Y[]) { int s[N], x[M], y[M]; int res[N], pos[N], ind[N]; for(int l = 0; l < N; l++) s[l] = S[l]; for(int l = 0; l < M; l++) x[l] = X[l], y[l] = Y[l]; for(int l = 0; l < N; l++) { res[l] = l; pos[s[l]] = l; } for(int l = 0; l < M; l++) { int i = x[l], j = y[l]; swap(res[i], res[j]); } for(int l = 0; l < N; l++) ind[res[l]] = l; for(int l = 0; l < M; l++) { int i = x[l], j = y[l]; swap(s[i], s[j]); swap(pos[s[i]], pos[s[j]]); i = ind[i], j = ind[j]; swap(res[i], res[j]); swap(ind[res[i]], ind[res[j]]); int u = 0, v = 0; for(int k = 0; k < N; k++) { if(s[k] == ind[k]) continue; u = k; for(int a = 0; a < N; a++) { if(s[a] != ind[k]) continue; v = a; break; } break; } swap(s[u], s[v]); swap(pos[s[u]], pos[s[v]]); } for(int l = 0; l < N - 1; l++) if(s[l] > s[l + 1]) return 0; return 1; } int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) { int lo = 0, hi = M; while(lo <= hi) { int md = (lo + hi) / 2; if(can(N, S, md, X, Y)) { M = md; hi = md - 1; } else lo = md + 1; } int res[N], pos[N], ind[N]; for(int l = 0; l < N; l++) { res[l] = l; pos[S[l]] = l; } for(int l = 0; l < M; l++) { int i = X[l], j = Y[l]; swap(res[i], res[j]); } for(int l = 0; l < N; l++) ind[res[l]] = l; for(int l = 0; l < M; l++) { int i = X[l], j = Y[l]; swap(S[i], S[j]); swap(pos[S[i]], pos[S[j]]); i = ind[i], j = ind[j]; swap(res[i], res[j]); swap(ind[res[i]], ind[res[j]]); int u = 0, v = 0; for(int k = 0; k < N; k++) { if(S[k] == ind[k]) continue; u = k; for(int a = 0; a < N; a++) { if(S[a] != ind[k]) continue; v = a; break; } break; } swap(S[u], S[v]); swap(pos[S[u]], pos[S[v]]); P[l] = u, Q[l] = v; } return M; }
#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...