This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
int n, S;
std::cin >> n >> S;
std::vector<int> a(n);
for (int i = 0; i < n; i++) {
std::cin >> a[i];
}
std::vector<std::pair<int, int>> ans;
auto swap = [&](int i, int j) {
ans.emplace_back(i, j);
ans.emplace_back(j, i);
ans.emplace_back(i, j);
a[i] ^= a[j];
a[j] ^= a[i];
a[i] ^= a[j];
};
std::vector<int> b = a;
std::sort(b.begin(), b.end());
if (S == 1) {
for (int i = 0; i < n; i++) {
for (int j = n - 1; j >= 0; j--) {
if (a[j] != b[j]) {
int pos = std::find(a.begin(), a.end(), b[j]) - a.begin();
for (; pos < j; pos++) {
swap(pos, pos + 1);
}
}
}
}
}
std::cout << ans.size() << "\n";
for (auto [i, j] : ans) {
std::cout << i + 1 << " " << j + 1 << "\n";
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |