일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 영어기초
- Backtracking Algorithm
- 백트래킹
- 파이썬
- 완전탐색
- 라이브 아카데미
- IF
- python
- 관계절
- 영어
- 알고리즘
- 블록체인
- BFS
- 정렬
- baekjoon
- 라이브아카데미
- 영어 회화
- 백트래킹 알고리즘
- Hyperledger Fabric
- 전치사
- 회화
- 회화기초
- 영어회화
- 일상회화
- N-Queens
- dfs
- 다이나믹프로그래밍
- 영어회와
- 백준
- used to
Archives
- Today
- Total
내 맴
[ 백준 ] 2606번 : 바이러스 (파이썬) 본문
728x90
문제 )
https://www.acmicpc.net/problem/2606
[ 풀이 ]
그래프 탐색에 대한 문제이다. BFS, DFS 방법으로 둘 다 구현해 보았다.
먼저, DFS방법으로 푼 코드이다. 재귀함수를 이용해준다.
- Python code (DFS )
visit=[1]
def DFSWorm(current):
global count, visit
for i in range(1,n+1):
# 바이러스에 걸리지 X & 길이 연결되어있는 경우
if i not in visit and way[current][i]==1:
count+=1
visit.append(i)
DFSWorm(i)
n=int(input())
line=int(input())
# 경로를 행렬로 만들어 줘야함 N*N 행렬 - 인접행렬 통해 접근
way=[[0]*(n+1)for i in range(n+1)]
count=0
for i in range(line):
x,y=map(int,input().split())
way[x][y]=1
way[y][x]=1
DFSWorm(1)
print(count)
BFS로 푼 코드이다. Queue를 이용하여 구현해주었다.
- Python code (BFS )
def BFSWorm():
bcount=0
visited=[1]
queue=[1]
while queue:
v=queue.pop(0)
# 바이러스에 걸리지 X & 길이 연결되어있는 경우
for i in range(1,n+1):
if i not in visited and way[v][i]==1:
bcount+=1
visited.append(i)
queue.append(i)
print(bcount)
n=int(input())
line=int(input())
# 경로를 행렬로 만들어 줘야함 N*N 행렬 - 인접행렬 통해 접근
way=[[0]*(n+1)for i in range(n+1)]
for i in range(line):
x,y=map(int,input().split())
way[x][y]=1
way[y][x]=1
BFSWorm()
728x90
'Algorithm > Baekjoon 문제풀이' 카테고리의 다른 글
[ 백준 ] 14658번 : 하늘에서 별똥별이 빗발친다 (파이썬) (0) | 2022.12.27 |
---|---|
[ 백준 ] 2667번 : 단지번호 붙이기 (파이썬 / DFS) (1) | 2020.06.20 |
[ 백준 ] 1260번 : DFS와 BFS (파이썬) (0) | 2020.06.14 |
[ 백준 ] 1003번 : 피보나치 함수 (파이썬) (0) | 2020.05.22 |
[ 백준 ] 2748번 : 피보나치 수 2 (파이썬) (0) | 2020.05.19 |