일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 홈화면
- 순열
- expo
- lcm
- 코틀린
- 1182
- 안드로이드
- Android
- 최소공배수
- 1260
- 뒤로가기
- Kotlin
- 11054
- 괄호
- 11기
- Python
- 나머지
- 코테
- 11057
- 앱
- 9095
- LCS
- 백준
- 6603
- 매일11시
- permutation
- 11053
- Combination
- itertools
- 파이썬
Archives
- Today
- Total
목록2468 (1)
황소개발자
백준 2468 파이썬 python : 안전 영역 @@황소처럼 우직하게@@ 시간 재면서 풀자
10분컷 import sys input = sys.stdin.readline n = int(input()) mat = [] for i in range(n): mat.append(list(map(int, input().split()))) dx = [0, 0, 1, -1] dy = [1, -1, 0, 0] def bfs(sy, sx, visited, cnt, wh): visited[sy][sx] = 1 q = [] q.append([sy, sx]) while q: y, x = q.pop(0) for i in range(4): ny = y + dy[i] nx = x + dx[i] if 0 wh: bfs(i, j, visited, cnt, wh) cnt += 1 if cnt - 1 == 0: break ans ..
백준 문제 풀이
2020. 4. 26. 02:45