#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define pb emplace_back
#define AI(i) begin(i), end(i)
template<class T> bool chmin(T &a, T b) { return b < a && (a = b, true); }
template<class T> bool chmax(T &a, T b) { return a < b && (a = b, true); }
#ifdef KEV
#define DE(args...) kout("[ " + string(#args) + " ] = ", args)
void kout() { cerr << endl; }
template<class T, class ...U> void kout(T a, U ...b) { cerr << a << ' ', kout(b...); }
template<class T> void debug(T l, T r) { while (l != r) cerr << *l << " \n"[next(l)==r], ++l; }
#else
#define DE(...) 0
#define debug(...) 0
#endif
const int MAX_N = 300010;
#include "train.h"
int dp[MAX_N], w[MAX_N], sum[MAX_N], inst[MAX_N], n;
int sure[MAX_N];
int belong[MAX_N];
vector<int> edge[MAX_N];
bool dfs(int x, int s, int v = 0) {
static vector<int> stk;
if (sure[x] != -1) return sure[x] == s;
if (dp[x] != -1) return dp[x] == s;
stk.pb(x);
inst[x] = true;
v += w[x];
sum[x] = v;
bool ret = true;
DE(x, s, v);
// A owns it
if (belong[x] == 1) {
dp[x] = 0;
for (int u : edge[x]) {
if (dp[u] != -1 && inst[u]) {
if (w[u] || sum[x] != sum[u]) {
dp[x] = 1;
break;
}
}
if (inst[u]) continue;
if (dfs(u, 1, v)) {
dp[x] = 1;
break;
}
}
if (dp[x] == 1) sure[x] = 1;
if (dp[x] != s) {
ret = false;
dp[x] = -1;
}
}
else {
dp[x] = 1;
for (int u : edge[x]) {
if (dp[u] != -1 && inst[u]) {
if (w[u] == 0 && sum[x] == sum[u]) {
dp[x] = 0;
break;
}
}
if (inst[u]) continue;
if (dfs(u, 0, v)) {
DE(u, 0);
dp[x] = 0;
break;
}
}
if (dp[x] == 0) sure[x] = 0;
if (dp[x] != s) {
ret = false;
dp[x] = -1;
}
}
stk.pop_back();
inst[x] = false;
dp[x] = -1;
return ret;
}
std::vector<int> who_wins(std::vector<int> a, std::vector<int> r, std::vector<int> u, std::vector<int> v) {
n = a.size();
for (int i = 0;i < n;++i) {
w[i] = r[i];
belong[i] = a[i];
}
for (int i = 0;i < u.size();++i) {
edge[ u[i] ].pb( v[i] );
}
memset(sure, -1, sizeof(sure));
vector<int> res(n);
for (int i = 0;i < n;++i) {
memset(dp, -1, sizeof(dp));
res[i] = dfs(i, 1);
}
return res;
}
Compilation message
train.cpp: In function 'bool dfs(int, int, int)':
train.cpp:14:17: warning: statement has no effect [-Wunused-value]
14 | #define DE(...) 0
| ^
train.cpp:39:2: note: in expansion of macro 'DE'
39 | DE(x, s, v);
| ^~
train.cpp:14:17: warning: statement has no effect [-Wunused-value]
14 | #define DE(...) 0
| ^
train.cpp:74:5: note: in expansion of macro 'DE'
74 | DE(u, 0);
| ^~
train.cpp: In function 'std::vector<int> who_wins(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
train.cpp:99:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
99 | for (int i = 0;i < u.size();++i) {
| ~~^~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
233 ms |
10128 KB |
Output is correct |
2 |
Correct |
231 ms |
10104 KB |
Output is correct |
3 |
Correct |
216 ms |
10320 KB |
Output is correct |
4 |
Correct |
233 ms |
10188 KB |
Output is correct |
5 |
Correct |
227 ms |
10180 KB |
Output is correct |
6 |
Correct |
213 ms |
10208 KB |
Output is correct |
7 |
Correct |
214 ms |
10204 KB |
Output is correct |
8 |
Correct |
215 ms |
10196 KB |
Output is correct |
9 |
Correct |
214 ms |
10176 KB |
Output is correct |
10 |
Correct |
214 ms |
10188 KB |
Output is correct |
11 |
Correct |
229 ms |
10168 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
9696 KB |
Output is correct |
2 |
Correct |
7 ms |
9676 KB |
Output is correct |
3 |
Correct |
7 ms |
9648 KB |
Output is correct |
4 |
Incorrect |
7 ms |
9676 KB |
3rd lines differ - on the 4th token, expected: '0', found: '1' |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2065 ms |
10628 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2081 ms |
10628 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
228 ms |
10664 KB |
3rd lines differ - on the 1st token, expected: '1', found: '0' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
233 ms |
10128 KB |
Output is correct |
2 |
Correct |
231 ms |
10104 KB |
Output is correct |
3 |
Correct |
216 ms |
10320 KB |
Output is correct |
4 |
Correct |
233 ms |
10188 KB |
Output is correct |
5 |
Correct |
227 ms |
10180 KB |
Output is correct |
6 |
Correct |
213 ms |
10208 KB |
Output is correct |
7 |
Correct |
214 ms |
10204 KB |
Output is correct |
8 |
Correct |
215 ms |
10196 KB |
Output is correct |
9 |
Correct |
214 ms |
10176 KB |
Output is correct |
10 |
Correct |
214 ms |
10188 KB |
Output is correct |
11 |
Correct |
229 ms |
10168 KB |
Output is correct |
12 |
Correct |
7 ms |
9696 KB |
Output is correct |
13 |
Correct |
7 ms |
9676 KB |
Output is correct |
14 |
Correct |
7 ms |
9648 KB |
Output is correct |
15 |
Incorrect |
7 ms |
9676 KB |
3rd lines differ - on the 4th token, expected: '0', found: '1' |
16 |
Halted |
0 ms |
0 KB |
- |