답안 #584675

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
584675 2022-06-27T19:02:29 Z 1ne 장난감 기차 (IOI17_train) C++14
0 / 100
174 ms 1516 KB
#include "train.h"
#include<bits/stdc++.h>
using namespace std;
std::vector<int> who_wins(std::vector<int> a, std::vector<int> r, std::vector<int> u, std::vector<int> v) {
	int n = (int)a.size();
	int m = (int)u.size();
	vector<int>ans(n);
	vector<vector<int>>adj(n);
	for (int i = 0;i<m;++i){
		adj[u[i]].push_back(v[i]);
	}
	vector<int>visited(n,-1);
	vector<int>cnt(n,0);
	for (int i = 0;i<n;++i){
		function<int(int,int)>dfs = [&](int u,int got){
			if (visited[u] == i){
				if (got)return 1;
				return 0;
			}
			got|=r[u];
			visited[u] = i;
			int ans = 0;
			for (auto x:adj[u]){
				ans|=dfs(x,got);
			}
			return cnt[u] = ans;
		};
		if (visited[i] != -1){
			ans[i] = cnt[i];
		}
		else{
			ans[i] = dfs(i,0);
		}
	}
	return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 1236 KB 3rd lines differ - on the 1st token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB 3rd lines differ - on the 1st token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 8 ms 1516 KB 3rd lines differ - on the 1st token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 174 ms 1136 KB 3rd lines differ - on the 696th token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 67 ms 1280 KB 3rd lines differ - on the 2nd token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 1236 KB 3rd lines differ - on the 1st token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -