# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
149359 | お前はもう死んでいる (#200) | Bulb Game (FXCUP4_bulb) | C++17 | 72 ms | 5940 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bulb.h"
#include <cstdio>
using namespace std;
int dive(int u, vector<int> &l)
{
while (u >= 0)
u = l[u];
return u == -1;
}
int FindWinner(int t, vector<int> l, vector<int> r)
{
int n = l.size();
if (!dive(0, l))
return 0;
for (int u = 0; u >= 0; u = l[u])
if (!dive(r[u], l))
{
bool ok1 = false, ok2 = true;
for (int v = 0; v != l[u] && !ok1; v = l[v])
{
bool cur = true;
for (int k = r[v]; k >= 0; k = l[k])
if (!dive(r[k], l))
{
cur = false;
break;
}
ok1 |= cur;
}
if (r[u] >= 0)
{
swap(l[r[u]], r[r[u]]);
for (int v = 0; v >= 0; v = l[v])
if (!dive(r[v], l))
{
ok2 = false;
break;
}
swap(l[r[u]], r[r[u]]);
}
else
ok2 = false;
return ok1 || ok2;
}
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... |