[BOJ] 17142 : 연구소 3 [브루트포스/BFS](Python)


[BOJ] 17142 : 연구소 3 [브루트포스/BFS](Python)

문제 링크 https://www.acmicpc.net/problem/17142 17142번: 연구소 3 인체에 치명적인 바이러스를 연구하던 연구소에 승원이가 침입했고, 바이러스를 유출하려고 한다. 바이러스는 활성 상태와 비활성 상태가 있다. 가장 처음에 모든 바이러스는 비활성 상태이고 www.acmicpc.net 소스 코드 from itertools import combinations from collections import deque n,m = map(int,input().split()) graph = [[] for _ in range(n)] viruses = [] answers = [] walls = 0 for i in range(n): temp = list(map(int,input().split(..


원문링크 : [BOJ] 17142 : 연구소 3 [브루트포스/BFS](Python)