# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
149254 | =SUM(D1:D9) (#200) | Bulb Game (FXCUP4_bulb) | C++17 | 1095 ms | 376 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "bulb.h"
int FindWinner(int T, std::vector<int> R, std::vector<int> L){
int N = L.size();
int now = 0;
std::vector<int> v;
while(R[now]>=0){
v.push_back(L[now]);
now = R[now];
}
v.push_back(L[now]);
if(R[now] == -2) return 0;
int cnt=0;
for(auto &i : v){
int check = 1;
while(R[i] >= 0){
int temp = L[i];
while(R[temp]>=0) temp = R[temp];
if(R[temp] == -1) check=0;
i = R[i];
}
int temp = L[i];
while(R[temp]>=0) temp = R[temp];
if(R[temp]==-1) check=0;
if(R[i] == -2 && check) return 0;
if(R[i] == -2) cnt++;
}
if(cnt>1) return 0;
return 1;
}
Compilation message (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... |