# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
892756 | raul2008487 | 게임 (IOI14_game) | C++17 | 306 ms | 34828 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
#define vl vector<ll>
#include "game.h"
using namespace std;
const int sz = 1505;
ll a[sz][sz];
struct DSU{
vl e, ne;
void init(ll n){
e.assign(n+1, -1);
ne.assign(n+1, 0);
}
ll base(ll x){
if(e[x] < 0){
return x;
}
return e[x] = base(e[x]);
}
bool unite(ll x, ll y){
x = base(x);
y = base(y);
bool as = 0;
if(x == y){assert(0);}
if(e[x] > e[y]){
swap(x, y);
}
a[x][y]++;
a[y][x]++;
ll nume = ne[x] + ne[y] + a[x][y];
ll cd = e[x] + e[y];
ll fe = (cd * (cd + 1) / 2);
if(nume == fe){
e[x] += e[y];
e[y] = x;
ne[x] = fe;
for(int i = 0; i<e.size()-1; i++){
if(a[i][y]){
a[i][x] += a[i][y];
a[x][i] += a[i][y];
}
}
return true;
}
else{
return 0;
}
}
};
DSU dsu;
void initialize(int n) {
dsu.init(n);
ll i, j;
for(i=0;i<n;i++){
for(j=0;j<n;j++){
a[i][j] = 0;
}
}
}
int hasEdge(int u, int v) {
if(dsu.unite(u, v)){
return 1;
}
return 0;
}
/*
5
0 2
0 4
1 3
3 4
0 3
0 1
4 1
1 2
4 2
*/
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |