반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 렌탈스튜디오창업
- 은행IT
- 계정계
- 학점은행제
- 의사결정나무모형
- 디렉토리계층구조
- 모놀리식
- 맥북환경설정
- union
- Homebrew
- fastapi
- MSA
- Pass By Value
- 오라클
- 개인프로필스튜디오창업
- python
- 컴퓨터공학학사취득
- 학점은행제무료강의
- oracleapex
- 맥북셋팅
- 코어뱅킹
- jdk17
- 채널계
- SQL
- 맥북
- jdk
- it자격증
- DB
- 코딩테스트
- 프로그래머스
Archives
- Today
- Total
목록2024/05/10 (1)
개발머해니
[백준] 2606 - 바이러스 (python3)
문제https://www.acmicpc.net/problem/2606 풀이 (bfs)from collections import deque# 1. 입력받기n=int(input()) # 컴퓨터 개수v=int(input()) # 연결선 개수graph = [[] for i in range(n+1)] # 그래프 초기화for i in range(v): # 그래프 생성 a,b=map(int,input().split()) graph[a]+=[b] # a에 b 연결 graph[b]+=[a] # b에 a 연결 -> 양방향 #print(graph)# 2. 노드 탐색 (bfs / 큐)visited = [0] * (n+1) # 방문 여부 체크visited[1]=1 # 1번 컴퓨터부터 시작이니 방문 표시Q..
알고리즘
2024. 5. 10. 12:27