이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
const int MN = 1501;
int N;
int mat[MN][MN];
int ct[MN];
int alone[MN];
int edges, q;
void initialize(int n) {
N = n;
edges = N-1;
q = (N * (N-1)) / 2;
for (int i=0; i<N; ++i) {
for (int j=0; j<N; ++j) {
mat[i][j] = -1;
}
ct[i] = 0;
mat[i][i] = 1;
alone[i] = true;
}
}
int hasEdge(int u, int v) {
if (mat[u][v] != -1) return mat[u][v];
++ct[u];
++ct[v];
--q;
mat[u][v] = (ct[u] == N-1) || (ct[v] == N-1);
if (alone[u] && alone[v]) {
}
if (q < edges) mat[u][v] = true;
if (mat[u][v]) {
--edges;
alone[u] = alone[v] = false;
}
mat[v][u] = mat[u][v];
return mat[u][v];
}
/*
4
2 3
1 3
0 2
0 1
1 2
0 3
*/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |