Submission #585223

# Submission time Handle Problem Language Result Execution time Memory
585223 2022-06-28T12:49:51 Z Vanilla Toy Train (IOI17_train) C++17
0 / 100
14 ms 752 KB
#include <bits/stdc++.h>
#include "train.h"
using namespace std;

vector<int> who_wins(vector<int> a, vector<int> r, vector<int> u, vector<int> v) {
	int n = a.size(), m = u.size();
	vector <int> has_self (n);
	vector <int> has_next (n);
	vector <int> rs (n, 0);
	for (int i = 0; i < m; i++){
		if (u[i] == v[i]) {
			has_self[u[i]] = 1;
		}
		else has_next[u[i]] = 1;
	}
	for (int i = 0; i < n; i++){
		for (int j = i; j < n; j++) {
			if (has_self[j] && a[j] && r[j]) {
				rs[i] = 1;
				break;
			}
			if (!has_next[j] && !a[j] && r[j]) {
				rs[i] = 1;
				break;
			}
			if (has_self[j] && !a[j]) break;
		}
	}
	return rs;
}
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 468 KB 3rd lines differ - on the 26th token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB 3rd lines differ - on the 2nd token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 14 ms 748 KB Output is correct
2 Correct 14 ms 724 KB Output is correct
3 Correct 13 ms 752 KB Output is correct
4 Incorrect 13 ms 724 KB 3rd lines differ - on the 1st token, expected: '1', found: '0'
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 8 ms 596 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 9 ms 724 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 3 ms 468 KB 3rd lines differ - on the 26th token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -