Submission #442160

#TimeUsernameProblemLanguageResultExecution timeMemory
442160elazarkorenXor Sort (eJOI20_xorsort)C++17
65 / 100
14 ms1220 KiB
#include <iostream>
#include <vector>
#include <algorithm>
#define x first
#define y second
using namespace std;
typedef vector<int> vi;
typedef pair<int, int> pii;
typedef vector<pii> vii;

vi a;
vii ans;

void Xor(int i, int j) {
    a[i] ^= a[j];
    ans.push_back({i, j});
}

void Swap(int i, int j) {
    Xor(j, i);
    Xor(i, j);
    Xor(j, i);
//    ans.push_back({j, i});
//    ans.push_back({i, j});
//    ans.push_back({j, i});
//    swap(a[i], a[j]);
}

int main() {
    int n, s;
    cin >> n >> s;
    a.resize(n + 1);
    for (int i = 1; i <= n; i++) cin >> a[i];
    if (s == 1) {
        while (true) {
            bool is_new = false;
            for (int i = 1; i < n; i++) {
                if (a[i] > a[i + 1]) {
                    Swap(i, i + 1);
                    is_new = true;
                }
            }
            if (!is_new) break;
        }
    } else {
        int end = n;
        for (int bit = 19; bit >= 0; bit--) {
            bool visited = false;
            for (int i = 1; i < end; i++) {
                if ((a[i] >> bit) & 1) {
                    if (!((a[i + 1] >> bit) & 1)) {
                        Xor(i + 1, i);
                    }
                    Xor(i, i + 1);
                    visited = true;
                }
            }
            end -= visited;
        }
    }
    cout << ans.size() << '\n';
    for (int i = 0; i < ans.size(); i++) {
        cout << ans[i].x << ' ' << ans[i].y << '\n';
    }
}

Compilation message (stderr)

xorsort.cpp: In function 'int main()':
xorsort.cpp:62:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   62 |     for (int i = 0; i < ans.size(); i++) {
      |                     ~~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...