티스토리 뷰
https://www.acmicpc.net/problem/18405
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
|
from collections import deque
dd = ((-1, 0), (0, 1), (1, 0), (0, -1))
n, k = map(int, input().split())
q = deque()
viruses = list()
graph = [[0] for _ in range(n + 1)]
for i in range(1, n + 1):
arr = list(map(int, input().split()))
graph[i] += arr
for j in range(1, n + 1):
if graph[i][j] != 0:
viruses.append((graph[i][j], 0, i, j))
s, x, y = map(int, input().split())
viruses.sort()
for virus in viruses:
q.append(virus)
while q:
virus = q.popleft()
for i in range(4):
posx, posy = virus[2] + dd[i][0], virus[3] + dd[i][1]
if 1 <= posx <= n and 1 <= posy <= n and graph[posx][posy] == 0 and virus[1] < s:
graph[posx][posy] = virus[0]
q.append((virus[0], virus[1] + 1, posx, posy))
print(graph[x][y])
|
cs |
전형적인 BFS 방식 문제이다.
튜플의 1번째 원소 (virus[1])은 시간을 나타낸다.
'algorithm'''problem solve' 카테고리의 다른 글
[백준] 14888 - 연산자 끼워넣기 (DFS) (0) | 2020.10.04 |
---|---|
[프로그래머스] 괄호 변환 (DFS, 구현, 카카오) (0) | 2020.10.04 |
[백준] 14502 - 연구소 (DFS, 완전탐색) (0) | 2020.10.04 |
[백준] 18352 - 특정 거리의 도시 찾기 (BFS) (0) | 2020.10.03 |
[프로그래머스] 외벽 점검 (카카오, 구현, 순열) (0) | 2020.10.02 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 코딩
- 알고리즘
- 구현
- DFS
- BFS
- 오픈소스
- c
- 이분탐색
- 동적 계획법
- 완전탐색
- 컨트리뷰톤
- LG
- DP
- 브루트포스
- Dynamic Programming
- 인공지능
- 파이썬
- 피보나치
- BaekJoon
- webOS
- 1932
- 백준
- 백트래킹
- 플로이드 와셜
- 정렬
- 프로그래머스
- 카카오
- PyPy3
- 한화큐셀
- c++
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함