# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
280399 |
2020-08-22T17:19:46 Z |
Noam13 |
Toy Train (IOI17_train) |
C++14 |
|
11 ms |
1920 KB |
#include <bits/stdc++.h>
#define vi vector<int>
#define vvi vector<vi>
#define vb vector<bool>
#define vvb vector<vb>
#define ii pair<int, int>
#define x first
#define y second
#define vii vector<ii>
#define pb push_back
#define all(x) x.begin(), x.end()
#define loop(i,s,e) for(int i=s;i<e;++i)
#define loopr(i,s,e) for(int i=e-1;i>=s;--i)
#define chkmin(a,b) a = min(a,b)
#define chkmax(a,b) a = max(a,b)
using namespace std;
const int INF = 1e9;
int n;
vb check;
void dfs(int cur, vi& vec, vvi& g){
if (check[cur]) return ;
check[cur] = 1;
for(auto nei:g[cur]) dfs(nei, vec, g);
vec.pb(cur);
}
vvi g, ag;
vi who_wins(vi a, vi r, vi u, vi v) {
n = a.size();
g.resize(n); ag.resize(n); check.resize(n);
loop(i,0,u.size()){
int a = u[i], b = v[i];
g[a].pb(b);
ag[b].pb(a);
}
vi res(n);
if (a[0]){
vi order;
loop(i,0,n) dfs(i, order, ag);
reverse(all(order));
fill(all(check),0);
for(auto cur:order){
if (check[cur]) continue;
vi vec;
dfs(cur, vec, g);
/*for(auto i:vec) cout<<i<<" ";
cout<<endl;*/
bool good = 0;
for(auto i:vec) if (r[i]) good = 1;
if (vec.size()==1){
bool self = 0;
for(auto nei:g[vec[0]]) if (nei==vec[0]) self = 1;
if (!self) good = 0;
}
if (!good){
for(auto c:vec) for(auto nei:g[c]){
if (res[nei]) good = 1;
}
}
for(auto i:vec) res[i] = good;
}
}
else{
loop(i,0,n) check[i]=r[i];
vi order;
loop(i,0,n) dfs(i, order, ag);
reverse(all(order));
loop(i,0,n) check[i]=r[i];
for(auto cur:order){
if (check[cur]) continue;
vi vec;
dfs(cur, vec, g);
bool good = 1;
if (vec.size()==1){
good = 0;
for(auto nei:g[vec[0]]) if (nei==vec[0]) good = 1;
}
for(auto i:vec) res[i] = good;
}
order.clear();
fill(all(check),0);
loop(i,0,n) dfs(i, order, ag);
reverse(all(order));
fill(all(check),0);
for(auto cur:order){
if (check[cur]) continue;
vi vec;
dfs(cur, vec, g);
/*for(auto i:vec) cout<<i<<" ";
cout<<endl;*/
bool good = 0;
for(auto i:vec){
if (res[i]) good = 1;
else for(auto nei:g[i]) if(res[nei]) good = 1;
}
for(auto i:vec) res[i] = good;
}
loop(i,0,n) res[i] = !res[i];
}
return res;
}
/*
clear
g++ c.cpp grader.cpp -o c ; ./c
6 7
0 0 0 0 0 0
1 0 0 0 0 1
0 1
1 2
2 3
3 1
4 5
5 5
4 1
*/
Compilation message
train.cpp: In function 'std::vector<int> who_wins(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
train.cpp:12:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
12 | #define loop(i,s,e) for(int i=s;i<e;++i)
......
34 | loop(i,0,u.size()){
| ~~~~~~~~~~~~
train.cpp:34:5: note: in expansion of macro 'loop'
34 | loop(i,0,u.size()){
| ^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
6 ms |
1152 KB |
3rd lines differ - on the 14th token, expected: '1', found: '0' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
256 KB |
3rd lines differ - on the 8th token, expected: '0', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
9 ms |
1792 KB |
Output is correct |
2 |
Correct |
9 ms |
1792 KB |
Output is correct |
3 |
Correct |
11 ms |
1792 KB |
Output is correct |
4 |
Correct |
10 ms |
1664 KB |
Output is correct |
5 |
Correct |
10 ms |
1536 KB |
Output is correct |
6 |
Correct |
10 ms |
1408 KB |
Output is correct |
7 |
Correct |
11 ms |
1408 KB |
Output is correct |
8 |
Correct |
10 ms |
1408 KB |
Output is correct |
9 |
Correct |
9 ms |
1408 KB |
Output is correct |
10 |
Correct |
9 ms |
1408 KB |
Output is correct |
11 |
Correct |
9 ms |
1408 KB |
Output is correct |
12 |
Correct |
9 ms |
1408 KB |
Output is correct |
13 |
Correct |
10 ms |
1664 KB |
Output is correct |
14 |
Correct |
10 ms |
1664 KB |
Output is correct |
15 |
Correct |
10 ms |
1664 KB |
Output is correct |
16 |
Correct |
10 ms |
1664 KB |
Output is correct |
17 |
Correct |
11 ms |
1664 KB |
Output is correct |
18 |
Correct |
7 ms |
1408 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
9 ms |
1408 KB |
Output is correct |
2 |
Correct |
11 ms |
1536 KB |
Output is correct |
3 |
Correct |
11 ms |
1656 KB |
Output is correct |
4 |
Correct |
11 ms |
1664 KB |
Output is correct |
5 |
Correct |
11 ms |
1664 KB |
Output is correct |
6 |
Correct |
11 ms |
1664 KB |
Output is correct |
7 |
Correct |
11 ms |
1664 KB |
Output is correct |
8 |
Correct |
10 ms |
1536 KB |
Output is correct |
9 |
Correct |
9 ms |
1528 KB |
Output is correct |
10 |
Correct |
11 ms |
1920 KB |
Output is correct |
11 |
Correct |
10 ms |
1920 KB |
Output is correct |
12 |
Correct |
11 ms |
1920 KB |
Output is correct |
13 |
Correct |
11 ms |
1664 KB |
Output is correct |
14 |
Correct |
10 ms |
1664 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
11 ms |
1536 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 |
Incorrect |
6 ms |
1152 KB |
3rd lines differ - on the 14th token, expected: '1', found: '0' |
2 |
Halted |
0 ms |
0 KB |
- |