# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
150145 |
2019-09-01T07:48:12 Z |
Weeeee(#3729, Alexa2001) |
Bulb Game (FXCUP4_bulb) |
C++17 |
|
2 ms |
376 KB |
#include "bulb.h"
#include <bits/stdc++.h>
using namespace std;
const int Nmax = 3e5 + 5;
bool bad = 0;
int v1[Nmax], v2[Nmax];
int subarb[Nmax];
int dfs(int node, vector<int> &L, vector<int> &R, int e1, int e2, int e3)
{
if(node == -1)
return 0;
if(node == -2)
{
if(e1 == -1) bad = 1;
else
if(e2 == -1) return 1;
else
if(e3 == -1)
{
v2[e1]++;
v2[e2]++;
}
return 0;
}
int ans = dfs(L[node], L, R, e1, e2, e3);
if(e1 == -1) e1 = node;
else if(e2 == -1) e2 = node;
else if(e3 == -1) e3 = node;
ans += dfs(R[node], L, R, e1, e2, e3);
subarb[node] = ans;
}
int FindWinner(int T, std::vector<int> L, std::vector<int> R)
{
int n = L.size();
int e1 = -1, e2 = -1, e3 = -1;
int total = dfs(0, L, R, e1, e2, e3);
int i;
if(bad) return 0;
for(i=0; i<n; ++i)
{
/// E chestii cu un turn, dar nu in subarb lui node
if(v2[i]) continue;
if(total - subarb[i]) continue;
return 1;
}
return 0;
}
Compilation message
bulb.cpp: In function 'int dfs(int, std::vector<int>&, std::vector<int>&, int, int, int)':
bulb.cpp:39:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
376 KB |
Output is correct |
3 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |