Submission #457989

#TimeUsernameProblemLanguageResultExecution timeMemory
457989RaresFelixXor Sort (eJOI20_xorsort)C++17
40 / 100
14 ms5188 KiB
#include <bits/stdc++.h> #define MN 10071 #define ML 20 using namespace std; int n, s, A[MN]; int F[(1<<21)]; vector<pair<int, int> > SOL; void xo(int a, int b) { --F[A[a]]; A[a] ^= A[b]; ++F[A[a]]; SOL.push_back({a, b}); } int main() { cin >> n >> s; for(int i = 1; i <= n; ++i) cin >> A[i]; if(s == 1 || n <= ML){ int nr = 1; while(nr){ nr = 0; for(int j = n; j >= 2; --j) if(A[j] < A[j-1]){ ++nr; if(F[A[j] ^ A[j-1]] || (A[j] ^ A[j-1]) > A[j]){ xo(j, j-1); xo(j-1, j); xo(j, j-1); } else { xo(j-1, j); } } } } else { for(int j = (ML-1); j >= 0; --j){ for(int i = 1; i < n + j - (ML-1); ++i){ if((A[i] & (1<<j)) && A[i+1] & (1<<j)) xo(i, i + 1); else if((A[i] & (1<<j))){ xo(i+1, i); xo(i, i + 1); } } } } // for(int i = 1; i <= n; ++i) // cout << A[i] << " \n"[i==n]; cout << SOL.size() << "\n"; for(auto it : SOL) cout << it.first << " " << it.second << "\n"; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...