성장기록지
백준 13023) ABCDE (python) 본문
문제
풀이
예시와 같은 ABCDE가 있다는 뜻은, 그래프 안의 특정 노드에서 5개 이상 연결되어있는 것이 있는지 묻는 것과 같다.
따라서 dfs를 통해서 그래프들을 탐험하게 하였고, 그중에 5개의 이상 노드가 연결되어 있을 때 (cnt>=4 일 때)
ans를 1로 만들어 1을 출력하게 하였다.
from collections import defaultdict
import sys
input = sys.stdin.readline
limit_number = 15000
sys.setrecursionlimit(limit_number)
dic = defaultdict(list)
n,m = map(int,input().split())
for i in range(m):
a,b= map(int,input().split())
dic[a].append(b)
dic[b].append(a)
ans=0
def dfs(x,visited,cnt):
global ans
visited[x] = True
if cnt >= 4:
ans = 1
return
visited[x] = True
for i in dic[x]:
if not visited[i]:
dfs(i,visited,cnt+1)
visited[x] = False
for i in range(n):
visited = [False for _ in range(n)]
dfs(i,visited,0)
if ans == 1:
print(ans)
break
if i==n-1:
print(0)
'알고리즘' 카테고리의 다른 글
백준 9934 완전 이진 트리 (python) (0) | 2025.01.16 |
---|---|
백준 21314 민겸 수 (python) (0) | 2025.01.14 |
백준 14888) 연산자 끼워넣기 (python) (0) | 2024.12.26 |
백준 2668) 숫자고르기 (python) (0) | 2024.12.22 |
코틀린 세부 정렬 학습 (릿코드 로그 파일 재졍렬 ) (0) | 2024.06.21 |