이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bulb.h"
using namespace std;
int d[300003];
int c[300003];
int b[300003];
void dfs1(int x, vector<int> &L) {
d[x] = L[x];
if (d[x] >= 0) {
dfs1(d[x], L);
d[x] = d[d[x]];
}
}
void dfs2(int x, vector<int> &L, vector<int> &R) {
if (L[x] >= 0) dfs2(L[x], L, R);
if (R[x] >= 0) dfs2(R[x], L, R);
c[x] = R[x] == -2 || d[R[x]] == -2 || (L[x] >= 0 && c[L[x]] == -2) ? -2 : -1;
b[x] = R[x] == -1 || d[R[x]] == -1 || (L[x] >= 0 && b[L[x]] == -1) ? -1 : -2;
}
int FindWinner(int T, std::vector<int> L, std::vector<int> R){
int i, j, k, N = L.size();
for (i = 0; i < N; i++) if (!d[i]) dfs1(i, L);
if (d[0] == -2) return 0;
dfs2(0, L, R);
for (i = 0; i >= 0; i = L[i]) {
if (R[i] < 0 || c[R[i]] == -1) return 1;
if (R[i] == -2 || d[R[i]] == -2) break;
}
for (i = j = k = 0; i >= 0; i = L[i]) if (R[i] >= 0) {
if (d[R[i]] == -2 && b[R[i]] == -2) return 0;
if (b[R[i]] == -1) k++;
if (d[R[i]] != -1) j++;
}
return j <= 1 && k >= 1;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |