일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Kotlin
- 11057
- Android
- 11053
- permutation
- lcm
- 6603
- 코틀린
- 파이썬
- 안드로이드
- 괄호
- 코테
- 1260
- 백준
- 홈화면
- expo
- 나머지
- 뒤로가기
- 1182
- 앱
- LCS
- 9095
- itertools
- 11기
- 최소공배수
- 순열
- Python
- 11054
- 매일11시
- Combination
Archives
- Today
- Total
목록토마토 (1)
황소개발자
백준 7576 파이썬 python : 토마토 @@황소처럼 우직하게@@ 시간초과 해결
리스트에서 pop할 때, 시간복잡도는 O(n) 이다. 그러나 콜렉션에 디큐에서 pop의 시간복잡도는 O(1) 로 구현되어있다. import sys from collections import deque input = sys.stdin.readline dx = [1, -1, 0, 0] dy = [0, 0, 1, -1] w, h = map(int, input().split()) mat = [] for i in range(h): mat.append(list(map(int, input().split()))) q = deque() for i in range(h): for j in range(w): if mat[i][j] == 1: q.append([i, j]) def bfs(): global q while q: n..
백준 문제 풀이
2020. 3. 3. 02:41