이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include "bits/stdc++.h"
using namespace std;
const int MAXN = 1505;
int par[MAXN];
int comp[MAXN][MAXN];
int n;
int find(int v)
{
if(par[v] == v)
return v;
return par[v] = find(par[v]);
}
void merge(int f, int s)
{
f = find(f), s = find(s);
if(f == s)
return;
if(f > s)
swap(f, s);
par[s] = f;
for(int i = 1; i <= n; i++)
{
if(i == f)
continue;
int old = comp[f][i];
comp[f][i] = old + comp[s][i];
comp[i][f] = old + comp[i][s];
}
}
void initialize(int total) {
n = total;
for(int i = 1; i <= n; i++)
{
par[i] = i;
for(int j = 1; j <= n; j++) {
comp[i][j] = (i != j ? 1 : 0);
//cout << i << " " << j << " " << comp[i][j] << "\n";
}
}
}
int hasEdge(int u, int v) {
u++;
v++;
if(comp[find(u)][find(v)] == 1) {
merge(u, v);
return 1;
}
else {
comp[find(u)][find(v)]--;
comp[find(v)][find(u)]--;
return 0;
}
return 1;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |