이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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(auto j: sml) cout << j << " ";
cout << endl;
for(auto j: lar) cout << j << " ";
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... |