# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1062163 | andrei_iorgulescu | 게임 (IOI14_game) | C++14 | 242 ms | 26464 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "game.h"
#warning That's not FB, that's my FB
using namespace std;
int n;
int sz[1505], t[1505];
int cnt[1505][1505];
void initialize(int N)
{
n = N;
for (int i = 1; i <= n; i++)
t[i] = i, sz[i] = 1;
}
int par(int x)
{
while (x != t[x])
x = t[x];
return x;
}
int hasEdge(int u, int v)
{
u++;
v++;
int ru = u, rv = v;
u = par(u), v = par(v);
if (u == v)
assert(false);
if (sz[u] < sz[v])
swap(u,v);
if (cnt[v][u] != sz[u] * sz[v] - 1)
{
cnt[v][u]++;
cnt[u][v]++;
return 0;
}
sz[u] += sz[v];
t[v] = u;
for (int x = 1; x <= n; x++)
{
if (t[x] == x and x != u and x != v)
{
cnt[x][u] += cnt[x][v];
cnt[u][x] += cnt[v][x];
}
}
return 1;
}
컴파일 시 표준 에러 (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... |