# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
166540 | wilwxk | 사육제 (CEOI14_carnival) | C++14 | 3 ms | 376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAXN=155;
int rep[MAXN], repp[MAXN];
int mp[MAXN];
int n, cnt;
int find(int x) {
return rep[x]= rep[x]==x ? x : find(rep[x]);
}
void une(int a, int b) {
a=find(a); b=find(b);
if(a==b) return;
if(repp[a]>repp[b]) swap(a, b);
rep[a]=b;
}
int main() {
scanf("%d", &n);
for(int i=1; i<=n; i++) rep[i]=repp[i]=i;
for(int i=1; i<=n; i++) {
for(int j=1; j<i; j++) {
printf("2 %d %d\n", i, j);
int x; scanf("%d", &x);
if(x==1) une(i, j);
fflush(stdout);
}
}
printf("0 ");
for(int i=1; i<=n; i++) {
if(!mp[find(i)]) mp[find(i)]=++cnt;
printf("%d ", mp[find(i)]);
}
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... |