# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
423905 |
2021-06-11T14:03:22 Z |
cfalas |
Toy Train (IOI17_train) |
C++14 |
|
10 ms |
1612 KB |
#include "train.h"
#include<bits/stdc++.h>
using namespace std;
#define mp make_pair
#define INF 10000000
#define MOD 1000000007
#define MID ((l+r)/2)
#define HASHMOD 2305843009213693951
#define ll long long
#define ull unsigned long long
#define F first
#define S second
typedef pair<ll, ll> ii;
typedef pair<ii, int> iii;
typedef vector<int> vi;
typedef vector<ii> vii;
typedef map<int, int> mii;
#define EPS 1e-6
#define FOR(i,n) for(int i=0;i<((int)(n));i++)
#define FORi(i,a,b) for(int i=((int)(a));i<((int)(b));i++)
#define FOA(v, a) for(auto &v : a)
#define len(x) ((int)x.size())
vector<int> who_wins(vector<int> a, vector<int> r, vector<int> u, vector<int> v) {
int n = len(a);
vector<int> res(a.size(), 0);
vector<vi> adj(len(a), vi());
vi loop(n,0);
FOR(i,len(u)){
if(u[i]==v[i]) loop[i] = 1;
adj[u[i]].push_back(v[i]);
}
//assert(loop[n-1]);
res[n-1] = loop[n-1] && r[n-1];
for(int i=n-2;i>=0;i--){
if(loop[i] && r[i] && a[i]) res[i] = 1;
else if(loop[i] && len(adj[i])==1 && r[i]) res[i] = 1;
else if(!loop[i]) res[i] = res[i+1];
}
return res;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
4 ms |
1356 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
332 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
10 ms |
1076 KB |
3rd lines differ - on the 1st token, expected: '0', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
9 ms |
1612 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
7 ms |
972 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 |
Runtime error |
4 ms |
1356 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |