# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
759176 | Dan4Life | 게임 (IOI14_game) | C++17 | 1 ms | 212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
using namespace std;
int n, p[1501], sz[1501];
bool chk[1501][1501];
int findSet(int i){return i==p[i]?i:p[i]=findSet(p[i]);}
void unionSet(int i, int j){
int x = findSet(i), y = findSet(j);
if(x==y) return;
if(sz[x]<sz[y]) swap(x,y);
p[y] = x; sz[x]+=sz[y];
}
void initialize(int N){
n = N; for(int i =0; i < N; i++) p[i]=i,sz[i]=1;
}
int hasEdge(int u, int v){
int cnt = 0;
for(int i = 0; i < n and cnt<2; i++)
if(findSet(i)==u)
for(int j = i+1; j < n and cnt<2; j++)
if(findSet(j)==v and chk[i][j]) cnt++;
if(cnt==1) unionSet(u,v); chk[u][v]=chk[v][u]=1;
return cnt==1;
}
컴파일 시 표준 에러 (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... |