# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
150534 | =SUM(D1:D9) (#200) | Bulb Game (FXCUP4_bulb) | C++17 | 89 ms | 8192 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bulb.h"
std::vector<int> left,right;
std::pair<int,int> func(int k)
{
int pivot;
int C = 1;
for(pivot = k; pivot>=0; pivot = left[pivot])
{
int p = right[pivot];
while(p>=0) p = left[p];
if(p==-2) C = 0;
}
if(pivot==-2) return std::make_pair(0,C);
else return std::make_pair(1,C);
}
int FindWinner(int T, std::vector<int> L, std::vector<int> R){
int N = L.size();
left = L, right = R;
int pivot = 0;
while(pivot>=0) pivot = L[pivot];
if(pivot==-2) return 0;
pivot = 0;
while(pivot>=0)
{
std::pair<int,int> P = func(R[pivot]);
if(P.second==1) return 1;
if(P.first==1) pivot = L[pivot];
else return 0;
}
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... |