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