이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 1505;
int n;
int com[N], cnt[N][N], sz[N];
void initialize(int _n) {
n = _n;
fill_n(sz, N, 1), iota(com, com+n, 0);
}
int hasEdge(int u, int v) {
u = com[u], v = com[v];
if(sz[u] * sz[v] - 1 == cnt[u][v]) {
for(int i = 0; i < n; i++) cnt[u][i] += cnt[v][i];
for(int i = 0; i < n; i++) cnt[i][u] += cnt[i][v];
for(int i = 0; i < n; i++) if(com[i] == v) com[i] = u;
sz[u] += sz[v];
return 1;
} else ++cnt[u][v], ++cnt[v][u];
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... |