# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
520110 | tjd229 | 게임 (IOI14_game) | C++14 | 408 ms | 25104 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
int n;
int p[1500];
int mat[1500][1500];
int sz[1500];
int find(int a) {
if (p[a] != a) p[a] = find(p[a]);
return p[a];
}
bool dsu(int a, int b) {
a = find(a);
b = find(b);
if (a == b) return false;
sz[a] += sz[b];
for (int i = 0; i < n; ++i) {
int par = find(i);
mat[i][a] += mat[i][b];
mat[a][i] += mat[b][i];
}
p[b] = a;
return true;
}
void initialize(int n) {
::n = n;
for (int i = 0; i < n; ++i) {
sz[i] = 1; p[i] = i;
}
}
int hasEdge(int u, int v) {
int U = find(u), V = find(v);
if (U == V) return 0;
++mat[U][V]; ++mat[V][U];
if (sz[U] * sz[V] == mat[U][V]) {
dsu(U, V);
return 1;
}
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... |