반응형 백준알고리즘/DFS 와 BFS31 (Python/🥈3)백준 알고리즘 2606번: 바이러스 문제출처: https://www.acmicpc.net/problem/2606 2606번: 바이러스 첫째 줄에는 컴퓨터의 수가 주어진다. 컴퓨터의 수는 100 이하이고 각 컴퓨터에는 1번 부터 차례대로 번호가 매겨진다. 둘째 줄에는 네트워크 상에서 직접 연결되어 있는 컴퓨터 쌍의 수가 주어 www.acmicpc.net 풀이: bfs 형식 import sys from collections import deque sys.stdin = open('/Users/song/Desktop/Python/Python/h.txt', 'r') computer = int(input()) line = int(input()) graph = [[] for _ in range(computer+1)] for i in range(line.. 2023. 2. 13. 이전 1 ··· 3 4 5 6 다음 반응형