| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 100354 | MatesV13 | Wand (COCI19_wand) | C++11 | 64 ms | 4856 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n, m, a, b;
vector<int> w[100005];
bool v[100005];
void dfs(int x){
	for (vector<int>::iterator it=w[x].begin();it!=w[x].end();it++){
		if (!v[*it]){v[*it] = true; dfs(*it);}
	}
	return;
}
int main (){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
bool am1=0;
	cin >> n >> m;
	for (int i=0;i<m;i++){
		cin >> a >> b;
		if (b==1) am1=1;
		w[b].push_back(a);
	}
	if(am1) dfs(1);
	else v[1]=1;
	for (int i=1;i<=n;i++) cout << v[i];
return 0;
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
