이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#define N 1505
int par[N],edges[N][N],nn;
int f(int x)
{
if(par[x]==x)
return x;
return par[x]=f(par[x]);
}
bool issameset(int x,int y)
{
int fx=f(x);
int fy = f(y);
return (fx==fy);
}
void join(int x,int y)
{
int fx = f(x);
int fy = f(y);
par[fx] = fy;
for(int i = 0;i < nn;i++)
{
edges[fy][i] += edges[fx][i];
edges[fx][i] = 0;
}
for(int i = 0;i < nn;i++)
{
edges[i][fy] += edges[i][fx];
edges[i][fx] = 0;
}
return;
}
void initialize(int n)
{
nn = n;
for(int i = 0;i < n;i++)
{
for(int j = 0;j < n;j++)
{
if(i==j)
continue;
edges[i][j]=1;
}
par[i]=i;
}
return;
}
int hasEdge(int u, int v)
{
if(issameset(u,v))
return 0;
int fu = f(u);
int fv = f(v);
edges[fu][fv]--;
edges[fv][fu]--;
if(edges[fu][fv] == 0)
{
join(fu,fv);
return 1;
}
else
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... |