답안 #425870

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
425870 2021-06-13T12:07:26 Z Hazem 장난감 기차 (IOI17_train) C++14
0 / 100
7 ms 1356 KB
#include "train.h"
#include <bits/stdc++.h>

using namespace std;
const int N = 2e3+10;

vector<int>adj[N],R,A;
set<int>st;
int cnt[N];
int n,m;
bool vis[N];

bool dfs(int i,int pre){

	if(vis[i])
		return 0;

	st.insert(i);
	vis[i] = 1;
	cnt[i] += cnt[pre]+R[i];
	bool ret = 0;
	for(auto x:adj[i]){
		ret |= dfs(x,i);
		if(st.find(x)==st.end())
			continue;
		if(cnt[i]-cnt[x]+R[x]>0)ret = 1;
	}
	st.erase(i);
	return ret;
}

vector<int>ans;
std::vector<int> who_wins(std::vector<int> a, std::vector<int> r, std::vector<int> u, std::vector<int> v) {

	n = a.size(),m = u.size();
	A = a;R = r;
	for(int i=0;i<m;i++)
		adj[u[i]].push_back(v[i]);
	
	for(int i=0;i<n;i++){
		ans.push_back(dfs(i,n+1));
		memset(vis,0,sizeof(vis));
		memset(cnt,0,sizeof(cnt));
	}
	return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 5 ms 844 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 332 KB 3rd lines differ - on the 8th token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 6 ms 1356 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 5 ms 1100 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 7 ms 1300 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 5 ms 844 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -