1. 문제 - 백준 17142 연구소 3 (삼성 SW 역량테스트 기출)https://www.acmicpc.net/problem/17142 💡알고리즘 - BFS + 조합- 연구소에 있는 모든 바이러스들 중, m개를 활성 상태로 변경했을 때의 모든 경우의 수에서 빈칸에 바이러스가 퍼지는 최소 시간 -> 조합(from itertools import combinations 활용)- 그래프 + 모든 빈 칸에 바이러스를 퍼뜨리는 최소 시간 -> BFS ✅ 풀이from itertools import combinationsfrom collections import dequeimport sysn, m = map(int, input().split()) # m개의 바이러스를 활성상태로 둘 수 있음board = [] ..