# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
466471 | myvaluska | Xor Sort (eJOI20_xorsort) | C++14 | 1079 ms | 11412 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
// palindromefree.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
//long long int cifra[20];
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n;
int s;
cin >> n;
cin >> s;
vector<int>v(n);
for (int i = 0; i < n; i++)
{
cin >> v[i];
}
vector<pair<int, int>>vys;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n-1; j++)
{
if (v[j] > v[j + 1])
{
vys.push_back({ j,j + 1 });
vys.push_back({ j + 1,j });
vys.push_back({ j,j+1 });
swap(v[j], v[j + 1]);
}
}
}
cout << vys.size() << endl;
for (int i = 0; i < vys.size(); i++)
{
cout << vys[i].first + 1 << ' ';
cout << vys[i].second + 1 << endl;
}
return 0;
//std::cout << "Hello World!\n";
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |