# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
66839 | Kubalionzzale | 게임 (IOI14_game) | C++14 | 683 ms | 263168 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <iostream>
#include <algorithm>
#include <set>
#include <vector>
std::vector< std::vector<int> > g(1510);
int cnt[1510] = { 0 }, cnting = 0;
int curi, curj;
int n;
bool visited[1510] = { 0 };
void dfs(int index)
{
++cnting;
for (int i = 0; i < g[index].size(); ++i)
{
int next = g[index][i];
if ((curi == index && curj == next) || (curi == next && curj == index))
{
continue;
}
if (!visited[next])
dfs(next);
}
}
void dfss(int index)
{
for (int i = 0; i < n; ++i)
{
visited[i] = 0;
}
dfs(0);
}
void initialize(int N) {
n = N;
for (int i = 0; i < n; ++i)
{
for (int j = 0; j < n; ++j)
{
g[i].push_back(j);
g[j].push_back(i);
}
}
}
int hasEdge(int u, int v) {
curi = u;
curj = v;
dfss(0);
if (cnting == n)
return 0;
else
return 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... |