Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 동적
- 브루트포스
- 통계학
- 2중포문
- 소트
- 소트인사이드
- 스택
- 그리디
- 백준
- 404에러
- 월간 코드 챌린지 시즌2
- Backtracking
- 코테
- sort
- 스프링프레임워크
- 다익스트라
- 정렬
- 그리디알고리즘
- 동적계획법
- 코딩테스트
- DFS
- 프로그래머스
- 최단거리
- 스프링
- 퇴각검색
- 덩치
- 백트래킹
- 최빈값
- Python
- 파이썬
Archives
- Today
- Total
취준생의 코딩테스트 연습기
[백준] 1012번 유기농 배추 / 파이썬(python) 본문
# 문제 링크
https://www.acmicpc.net/problem/1012
# Soultion
bfs 사용시 recursionError가 발생하므로, 2줄에서 재귀 최대깊이를 설정해주어야한다.
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
|
import sys
sys.setrecursionlimit(10000)
t= int(input())
for _ in range(t):
m,n,k = map(int,input().split())
graph = [[0]*m for _ in range(n)]
for _ in range(k):
x,y = map(int,input().split())
graph[y][x] = 1
dx = [-1,1,0,0]
dy = [0,0,-1,1]
def dfs(x,y):
if x<0 or x>=n or y<0 or y>=m:
return False
if graph[x][y]==1:
graph[x][y] = 0
for i in range(4):
dfs(x+dx[i],y+dy[i])
return True
return False
cnt = 0
for i in range(n):
for j in range(m):
if dfs(i,j)==True:
cnt +=1
print(cnt)
|
cs |
'코딩테스트 > 백준' 카테고리의 다른 글
[백준] 7569번 토마토 / 파이썬(python) (0) | 2021.05.20 |
---|---|
[백준] 2178번 미로 탐색 / 파이썬(python) (0) | 2021.05.19 |
[백준] 2667번 단지번호붙이기 / 파이썬(python) (1) | 2021.05.19 |
[백준] 2606번 바이러스 / 파이썬(python) (2) | 2021.05.18 |
[백준] 1260번 DFS와 BFS / 파이썬(python) (0) | 2021.05.17 |
Comments