이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <stdio.h>
int Cut[1505][1505];
int P[1505], Sz[1505];
int N;
int UF(int u)
{
return (P[u] == -1)?u:(P[u] = UF(P[u]));
}
void initialize(int n)
{
N = n;
int i;
for (i = 0; i < n; i++)
{
P[i] = -1;
Sz[i] = 1;
}
}
int hasEdge(int u, int v)
{
int pu = UF(u);
int pv = UF(v);
int i;
// printf("Cut %d Sz %d %d\n", Cut[pu][pv], Sz[pu], Sz[pv]);
if (Cut[pu][pv] + 1 == Sz[pu]*Sz[pv])
{
P[pu] = pv;
for (i = 0; i < N; i++)
{
Cut[pv][UF(i)] += Cut[pu][UF(i)];
Cut[pu][UF(i)] = 0;
Cut[UF(i)][pv] = Cut[pv][UF(i)];
}
Sz[pv] += Sz[pu];
return 1;
}
Cut[pu][pv]++;
Cut[pv][pu]++;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |