# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
66847 | Kubalionzzale | 게임 (IOI14_game) | C++14 | 727 ms | 159164 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <iostream>
#include <algorithm>
#include <set>
int cnt[1510] = { 0 };
int g[1510][1510] = { 0 };
//1 - not connected
//0 - connected
int n;
bool treed[1510] = { 0 };
void initialize(int N) {
n = N;
for (int i = 0; i < n; ++i)
{
cnt[i] = 1;
}
treed[0] = true;
}
int hasEdge(int u, int v) {
if (treed[u] && treed[v])
{
g[u][v] = 1;
g[v][u] = 1;
return 0;
}
if (!treed[u] && !treed[v])
{
g[u][v] = 1;
g[v][u] = 1;
return 0;
}
if (treed[u])
{
if (cnt[v] == 1)
{
for (int i = 0; i < n; ++i)
{
if (!g[i][v])
{
g[i][v] = 1;
++cnt[i];
}
}
treed[v] = true;
return 1;
}
else
{
g[u][v] = 1;
g[v][u] = 1;
--cnt[v];
return 0;
}
}
else if (treed[v])
{
if (cnt[u] == 1)
{
for (int i = 0; i < n; ++i)
{
if (!g[i][u])
{
g[i][u] = 1;
++cnt[i];
}
}
treed[u] = true;
return 1;
}
else
{
g[u][v] = 1;
g[v][u] = 1;
--cnt[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... |