# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
31721 | top34051 | 게임 (IOI14_game) | C++14 | 889 ms | 19664 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
#define maxn 1505
int n;
int head[maxn];
int way[maxn][maxn];
int temp[maxn];
int findhead(int x) {
if(head[x]==x) return x;
return head[x] = findhead(head[x]);
}
void initialize(int N) {
int i,j;
n = N;
for(i=0;i<n;i++) head[i] = i;
for(i=0;i<n;i++) for(j=0;j<n;j++) way[i][j] = 1;
}
int hasEdge(int u, int v) {
u = findhead(u); v = findhead(v);
if(u==v) return 0;
if(way[u][v]==1) {
for(int i=0;i<n;i++) temp[i] = way[u][i] + way[v][i];
head[findhead(v)] = findhead(u);
for(int i=0;i<n;i++) way[findhead(u)][i] = way[i][findhead(u)] = temp[i];
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... |