# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
249708 | muhammad_hokimiyon | 게임 (IOI14_game) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 2000;
int n1;
int cnt;
int r = 0;
int a[N];
int get( int x )
{
return (p[x] == x ? x : p[x] = get(p[x]));
}
void initialize(int n)
{
n1 = n;
cnt = n;
for( int i = 1; i <= n; i++ )p[i] = i;
}
int hasEdge(int u, int v)
{
u += 1 , v += 1;
r += 1;
if( r == n1 * (n1 - 1) / 2 )return 1;
int x = get(u);
int y = get(v);
if( x == y )return 1;
if( cnt == 2 )return 0;
cnt -= 1;
return 1;
}