# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
428435 | Rouge_Hugo | 게임 (IOI14_game) | C++14 | 112 ms | 1064 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "game.h"
#define ll long long
#define fi first
#define se second
#define pb push_back
using namespace std;
int n;
const int N=100;
int vis[N],yes[N][N];
void dfs(int x)
{
if(vis[x])return;
vis[x]=1;
for(int it=0;it<n;it++)
{
int z=it,zz=x;
if(z>zz)swap(z,zz);
if(yes[z][zz]!=-1)continue;
if(vis[it])continue;
dfs(it);
}
}
void initialize(int N) {
n=N;
memset(yes,-1,sizeof yes);
}
int hasEdge(int x, int y) {
if(x>y)swap(x,y);memset(vis,0,sizeof vis);
yes[x][y]=0;
dfs(x);
if(vis[y]){
yes[x][y]=0;
yes[y][x]=0;
return 0;
}
yes[x][y]=1;
yes[y][x]=1;
return 1;
}
/*
4
0 1
0 2
0 3
3 1
1 2
3 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... |