이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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];
};
if (S == 1) {
std::vector<int> p(n);
std::iota(p.begin(), p.end(), 0);
for (int i = 0; i < n; i++) {
for (int j = 1; j < n; j++) {
if (a[p[j - 1]] > a[p[j]]) {
swap(p[j - 1], p[j]);
}
}
}
}
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... |