https://www.acmicpc.net/problem/13023
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
31
32
|
import sys
sys.setrecursionlimit(10000)
input = sys.stdin.readline
n,m = map(int, input().split())
arrive = False
a = [[] for _ in range(n+1)]
visited = [False]*(n+1)
def DFS(now, depth):
global arrive
if depth == 5:
arrive = True
return
visited[now] = True
for i in a[now]:
if not visited[i]:
DFS(i,depth+1)
visited[now] = False
for _ in range(m):
s,e = map(int, input().split())
a[s].append(e)
a[e].append(s)
for i in range(n):
DFS(i,1)
if arrive:
break
if arrive:
print(1)
else:
print(0)
|
cs |
'백준' 카테고리의 다른 글
백준 2023번: 신기한 소수 (0) | 2023.02.10 |
---|---|
백준 1517번: 버블 소트 (0) | 2023.02.09 |
백준 11004번: K번째 수 (0) | 2023.02.06 |
백준 1427번: 소트인사이드 (0) | 2023.02.05 |
백준 1377번: 버블 소트 (0) | 2023.02.04 |