이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include<bits/stdc++.h>
using namespace std;
#define ll int
#define pll pair<ll,ll>
#define ff first
#define ss second
//#define endl "\n"
#define pb push_back
#define F(i,a,b) for(ll i=a;i<=b;i++)
const ll maxn=1e3+5e2+100;
const ll base=2e9;
const ll mod= 1e9+7 ;
mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());
ll par[maxn];
ll val[maxn][maxn];
ll find_par(ll u)
{
if (u==par[u]) return u;
return par[u]=find_par(par[u]);
}
ll n;
void initialize(int n1)
{
n=n1;
for (int i=1;i<=n;i++)
{
par[i]=i;
for (int j=1;j<=n;j++)
{
if (i!=j) val[i][j]=1;
}
}
}
int hasEdge(int u, int v)
{
u++;
v++;
u=find_par(u);
v=find_par(v);
if (u==v)
{
return 0;
}
else
{
if (val[u][v]==1)
{
for (int t=1;t<=n;t++)
{
if (t==find_par(t)&&t!=u&&t!=v)
{
ll h=val[u][t]+val[v][t];
val[u][t]=h;
val[t][u]=h;
}
}
par[v]=u;
return 1;
}
else
{
val[u][v]--;
val[v][u]--;
return 0;
}
}
}
/*int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
if (fopen("t.inp","r"))
{
freopen("test.inp","r",stdin);
freopen("test.out","w",stdout);
}
ll n;
cin>>n;
initialize(n);
for (int i=1;i<=n;i++)
{
}
}*/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |