# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
531552 | makanhulia | 사육제 (CEOI14_carnival) | C++17 | 1 ms | 292 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int a[151], n;
map<pair<int,int>, int> mp;
int ask(int x, int y){
if(x > y) swap(x, y);
if(mp.count({x, y}))
{
return mp[{x, y}];
}
cout << "2 " << x << " " << y << endl;
int z;
cin >> z;
return mp[{x, y}] = z;
}
int main(){
// cin.tie(0) -> ios_base::sync_with_stdio(0);
cin >> n;
iota(a, a + n, 1);
for(int i=0;i<n;i++)
{
for(int j=0;j<i;j++)
{
if(ask(a[i], a[j]) == 1)
{
a[i] = a[j];
}
}
}
cout << "0 " << flush;
for(int i=0;i<n;i++) cout << a[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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |