| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 49119 | doowey | 게임 (IOI14_game) | C++14 | 3 ms | 1008 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 1509;
int sz[N];
int uni[N];
int y;
void initialize(int n) {
y = n;
for(int i = 0;i <= n;i ++ )
sz[i] = 1,uni[i] = i;
}
int fin(int u){
while(uni[u] != u){
u = uni[u];
}
return u;
}
void join(int a,int b){
if(sz[a] > sz[b])
swap(a,b);
uni[a] = b;
sz[b] += sz[a];
}
int hasEdge(int u, int v) {
u = fin(u);
v = fin(v);
if(u == v)
return 1;
if(sz[u] + sz[v] == y){
return 0;
}
join(u,v);
return 1;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
