이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
// Subtask 1 n = 4
using namespace std;
const int N = 1505;
int cont[N];
int pa[N];
int tam[N];
int neg = 0;
int n, r;
int find(int x){
if(x == pa[x]) return x;
return pa[x] = find(pa[x]);
}
void join(int a, int b){
a = find(a), b = find(b);
if(tam[a] > tam[b]) swap(a, b);
pa[a] = b;
tam[b] += tam[a];
return;
}
void initialize(int nn) {
memset(cont, 0, sizeof cont);
neg = 0;
n = nn;
r = n * (n - 1) / 2;
for(int i=0; i<n; ++i){
pa[i] = i;
tam[i] = 1;
}
return;
}
int hasEdge(int u, int v) {
if(tam[find(u)] == 1 && tam[find(v)] == 1){
// could be positive
join(u, v);
return 1;
}
if(cont[u] == n-2 or cont[v] == n-2){
// must be positive
join(u, v);
return 1;
}
if(neg == r - n + 1){
// must be positive
join(u, v);
return 1;
}
cont[u]++;
cont[v]++;
neg++;
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... |