일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 11기
- 괄호
- 뒤로가기
- 코테
- Android
- LCS
- 최소공배수
- permutation
- Combination
- expo
- 1182
- itertools
- 코틀린
- 11057
- Python
- Kotlin
- 순열
- 6603
- 11054
- 파이썬
- 매일11시
- 나머지
- 11053
- 홈화면
- 백준
- 앱
- 1260
- 안드로이드
- 9095
- lcm
Archives
- Today
- Total
목록1261 (1)
황소개발자
백준 1261 파이썬 python : 알고스팟 @@황소처럼 우직하게@@ 화이팅!
고진감래다 import sys from collections import deque input = sys.stdin.readline w, h = map(int, input().split()) miro = [[] for i in range(h)] for i in range(h): ss = input().strip() for s in ss: miro[i].append(int(s)) dx = [1, -1, 0, 0] dy = [0, 0, 1, -1] ans = 999999999 def bfs(y, x): q = [[y, x]] nxtq = [] miro[y][x] = 2 while q: now = q.pop(0) for i in range(4): ny = now[0] + dy[i] nx = now[1] + d..
백준 문제 풀이
2020. 3. 3. 16:46