이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
#define m_p make_pair
#define fi first
#define se second
#define all(x) (x).begin(),(x).end()
#define sz(x) ((int)(x).size())
typedef long long ll;
const int N = 1503;
int n;
int p[N];
int q[N][N];
int fi(int x)
{
if (x == p[x])
return x;
return p[x] = fi(p[x]);
}
void initialize(int n)
{
::n = n;
for (int i = 1; i <= n; ++i)
p[i] = i;
for (int x = 1; x <= n; ++x)
{
for (int y = 1; y <= n; ++y)
{
if (x == y)
continue;
q[x][y] = 1;
}
}
}
int hasEdge(int x, int y)
{
++x;
++y;
x = fi(x);
y = fi(y);
if (x == y)
return 0;
--q[x][y];
--q[y][x];
if (q[x][y])
return 0;
p[x] = y;
for (int i = 1; i <= n; ++i)
{
q[y][i] += q[x][i];
q[i][y] += q[x][i];
q[x][i] = 0;
q[i][x] = 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... |