| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 933317 | SmuggingSpun | 게임 (IOI14_game) | C++14 | 276 ms | 26456 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include<bits/stdc++.h>
using namespace std;
const int lim = 1505;
int n, p[lim], sz[lim], cnt[lim][lim];
int find_set(int n){
return n == p[n] ? n : p[n] = find_set(p[n]);
}
void merge(int a, int b){
if(sz[a = find_set(a)] < sz[b = find_set(b)]){
swap(a, b);
}
sz[p[b] = a] += sz[b];
for(int i = 0; i < n; i++){
cnt[a][i] += cnt[b][i];
cnt[i][a] += cnt[b][i];
}
}
void initialize(int N){
iota(p, p + (n = N), 0);
fill(sz, sz + n, 1);
memset(cnt, 0, sizeof(cnt));
}
int hasEdge(int u, int v){
if(sz[u = find_set(u)] * sz[v = find_set(v)] - 1 == cnt[u][v]){
merge(u, v);
return 1;
}
cnt[u][v]++;
cnt[v][u]++;
return 0;
}컴파일 시 표준 에러 (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... | ||||
