티스토리 뷰

알고리즘/SWEA

[SWEA 1219] 길찾기

히더 2018. 8. 10. 15:44

출처 : https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV14geLqABQCFAYD


#include <iostream>

#include <algorithm>

#include <memory.h>

using namespace std;


int N,result;

int a[100], b[100];


void dfs(int now)

{

if (a[now] == 99 || b[now] == 99) { result = 1; return; }

else

{

if(a[now]!=-1)dfs(a[now]);

if (b[now] != -1)dfs(b[now]);

}

}


int main()

{

int T; int t;

T = 10;

while (T--)

{

cin >> t >> N; result = 0; 

fill(a,a+100, -1); fill(b,b+100, -1);

for (int i = 0; i < N; i++)

{

int n1, n2; cin >> n1 >> n2;

if (a[n1] == -1) a[n1] = n2;

else b[n1] = n2;

}

dfs(0);

cout << "#" << t << " " << result << endl;

}


return 0;

}


'알고리즘 > SWEA' 카테고리의 다른 글

[SWEA 1221] GNS  (0) 2018.08.10
[SWEA 1220] Magnetic  (0) 2018.08.10
[SWEA 1218] 괄호 짝짓기  (0) 2018.08.10
[SWEA 1217] 거듭 제곱  (0) 2018.08.10
[SWEA 1216] 회문2  (0) 2018.08.09
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
글 보관함