# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
862244 | Rifal | Zagonetka (COI18_zagonetka) | C++14 | 45 ms | 424 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <fstream>
///#define endl '\n'
#define mod 998244353
#define INF 900000000
//#define cin fin
//#define cout fout
//#define fi first
//#define se second
using namespace std;
//ofstream fout("intel.out");
//ifstream fin("intel.in");
int main()
{
ios_base::sync_with_stdio(0);cout.tie(0);cin.tie(0);
int n; cin >> n; int arr[n]; int ans1[n+1], ans2[n+1], ans3[n+1];
for(int i = 0; i < n; i++) {
cin >> arr[i];
}
cout << "query ";
for(int i = 1; i <= n; i++) {
ans1[i] = i; cout << i << " ";
}
cout << endl;
int x; cin >> x;
if(x == 0) {
for(int i = n; i > 1; i--) {
int cnt = 1; bool ok = false;
for(int j = i-1; j >= 1; j--) {
cnt = 1;
ans1[j] = j+1; ans1[i] = j;
for(int z = 1; z <= n; z++) {
if(z == i || z == j) {
if(z == j) cnt += 2;
continue;
}
ans1[z] = cnt; cnt++;
}
cout << "query ";
for(int z = 1; z <= n; z++) cout << ans1[z] << " ";
cout << endl;
cin >> x;
if(x == 1) {
ok = true; break;
}
}
if(ok) break;
}
}
cout << "query ";
for(int i = n; i >= 1; i--) {
ans2[(n-i)+1] = i; cout << i << " ";
}
cout << endl;
cin >> x;
if(x == 0) {
for(int i = 1; i < n; i++) {
int cnt = n; bool ok = false;
for(int j = i+1; j <= n; j++) {
cnt = n;
ans2[i] = n-i; ans2[j] = (n-i)+1;
for(int z = 1; z <= n; z++) {
if(z == i || z == j) {
if(z== i) cnt -= 2;
continue;
}
ans2[z] = cnt; cnt--;
}
cout << "query ";
for(int z = 1; z <= n; z++) cout << ans2[z] << " ";
cout << endl;
cin >> x;
if(x == 1) {
ok = true; break;
}
}
if(ok) break;
}
}
cout << "end" << endl;
for(int i = 1; i <= n; i++) cout << ans1[i] << " ";
cout << endl;
for(int i = 1; i <= n; i++) cout << ans2[i] << " ";
cout << endl;
return 0;
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |