답안 #423934

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
423934 2021-06-11T14:15:46 Z cfalas 장난감 기차 (IOI17_train) C++14
0 / 100
7 ms 1356 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())

vi who_wins(vi a, vi r, vi u, vi v) {
	int n = len(a);
	vi res(n, 0);
	vi deg(n,0);
	vi loop(n,0);
	FOR(i,len(u)){
		if(u[i]==v[i]) loop[u[i]] = 1;
		deg[u[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] && deg[i]==1 && r[i]) res[i] = 1;
		else if(!loop[i] || (loop[i] && deg[i]>1)) res[i] = res[i+1];
	}
	return res;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 588 KB 3rd lines differ - on the 1st token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 332 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 6 ms 1356 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 7 ms 1100 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 7 ms 1260 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 588 KB 3rd lines differ - on the 1st token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -