이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
#define ff first
#define ss second
#define pb push_back
using namespace std;
#include "game.h"
const int N = 1505;
int par[N],sz[N],edges[N][N];
void initialize(int n) {
for(int i = 0; i < n; i++){
par[i] = i;
sz[i] = 1;
for(int j = 0; j < n; j++){
edges[i][j] = 1;
}
}
}
int find_set(int x){
if(par[x] == x) return x;
return par[x] = find_set(par[x]);
}
inline void union_set(int x,int y,int n){
if(sz[x] < sz[y]) swap(x,y);
par[y] = x;
sz[x] += y;
vector<int>fix(n,0);
for(int i = 0; i < n; i++){
int j = find_set(i);
if(fix[j]) continue;
fix[j] = 1;
edges[x][j] += edges[y][j];
edges[j][x] += edges[y][j];
}
}
int hasEdge(int u, int v) {
u = find_set(u);
v = find_set(v);
if(u == v) return 0;
if(edges[u][v] > 1){
edges[u][v]--;
edges[v][u]--;
return 0;
}
assert(edges[u][v]);
union_set(u,v,N);
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... |