이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
#define X first
#define Y second
#define pb push_back
#define pii pair<int, int>
typedef long long ll;
using namespace std;
const int MOD = 1e9 + 7;
const ll INF = 1e18;
const int OFF = (1 << 20);
int prt[1505];
int kol[1505][1505];
int maxi;
void initialize(int n) {
maxi = n;
for (int i = 0; i < n; i++) {
prt[i] = i;
for (int j = 0; j < n; j++) {
if (i == j) continue;
kol[i][j] = 1;
}
}
}
int find(int x) {
if (x == prt[x]) return x;
return prt[x] = find(prt[x]);
}
int hasEdge(int x, int y) {
x = find(x);
y = find(y);
if (x == y) return 0;
if (kol[x][y] > 1) {
kol[x][y]--;
kol[y][x]--;
return 0;
}
for (int i = 0; i < maxi; i++) {
kol[x][i] += kol[y][i];
kol[i][x] = kol[x][i];
}
prt[y] = x;
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... |