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>
using namespace std;
#define pb push_back;
#define mp make_pair;
const int siz = 0;
const int mod = 0;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int n;
cin >> n;
vector<int> v(n);
for(int i=0; i<n; i++) {
cin >> v[i];
}
vector<int> sml = v;
vector<int> lar = v;
for(int i=0; i<n; i++) {
int indi = -1, indj = -1, small = sml[i];
for(int j=i+1; j<n; j++) {
cout << "query";
for(int k=0; k<n; i++) {
if(k == i) {
cout << " " << sml[j];
}
else if(k == j) {
cout << " " << sml[i];
}
else {
cout << " " << sml[k];
}
}
cout << endl;
int x; cin >> x;
if(x == 1) {
if(v[j] < small) {
small = sml[j];
indj = j; indi = i;
}
}
}
if(indi != -1) {
swap(sml[indi],sml[indj]);
}
}
for(int i=0; i<n; i++) {
int indi = -1, indj = -1, small = lar[i];
for(int j=i+1; j<n; j++) {
cout << "query";
for(int k=0; k<n; i++) {
if(k == i) {
cout << " " << lar[j];
}
else if(k == j) {
cout << " " << lar[i];
}
else {
cout << " " << lar[k];
}
}
cout << endl;
int x; cin >> x;
if(x == 1) {
if(v[j] > small) {
small = lar[j];
indj = j; indi = i;
}
}
}
if(indi != -1) {
swap(lar[indi],lar[indj]);
}
}
cout << "end" << endl;
for(int i=0; i<n; i++) {
cout << sml[i] << " ";
}
cout << endl;
for(int i=0; i<n; i++) {
cout << lar[i] << " ";
}
cout << endl;
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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |