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
- Python
- 브루트포스
- 다익스트라
- 스프링
- 백트래킹
- 동적계획법
- 스택
- sort
- 그리디
- 정렬
- 최빈값
- 통계학
- 소트
- 최단거리
- 파이썬
- 스프링프레임워크
- 코테
- DFS
- 소트인사이드
- 동적
- 퇴각검색
- Backtracking
- 2중포문
- 월간 코드 챌린지 시즌2
- 백준
- 코딩테스트
- 덩치
- 그리디알고리즘
- 프로그래머스
- 404에러
Archives
- Today
- Total
취준생의 코딩테스트 연습기
[백준] 1303번 전쟁-전투 / 파이썬(python) 본문
# 문제 링크
https://www.acmicpc.net/problem/1303
# Soultion
dfs를 이용하여 2가지 케이스(W,H)로 이어진 부분의 개수를 구함
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
n,m = map(int,input().split())
graph = []
w_location = []
b_location = []
for i in range(m):
graph.append(list(map(str,input())))
for j in range(n):
if graph[i][j]=='W':
w_location.append([i,j])
else:
b_location.append([i,j])
dx = [1,-1,0,0]
dy = [0,0,1,-1]
def dfs(x,y,color):
global cnt
cnt+=1
for i in range(4):
xx = x+dx[i]
yy = y+dy[i]
if 0<=xx<m and 0<=yy<n and graph[xx][yy]==color and visited[xx][yy]==0:
visited[xx][yy] = visited[x][y]+1
dfs(xx,yy,color)
# W 체크
visited = [[0]*n for _ in range(m)]
cnt_w = 0
for x,y in w_location:
cnt = 0
if visited[x][y]==0:
visited[x][y] = 1
dfs(x,y,'W')
cnt_w += cnt*cnt
print(cnt_w,end=' ')
# B 체크
visited = [[0]*n for _ in range(m)]
cnt_b = 0
for x,y in b_location:
cnt = 0
if visited[x][y]==0:
visited[x][y] = 1
dfs(x,y,'B')
cnt_b += cnt*cnt
print(cnt_b,end=' ')
|
cs |
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 전화번호 목록 / 파이썬(python) (0) | 2021.05.27 |
---|---|
[프로그래머스] 게임 맵 최단거리 / 파이썬(python) (0) | 2021.05.25 |
[프로그래머스] [1차] 뉴스 클러스터링 / 파이썬(python) (0) | 2021.05.24 |
[프로그래머스] 가장 먼 노드 / 파이썬(python) (0) | 2021.05.24 |
[프로그래머스] 더 맵게 / 파이썬(python) (0) | 2021.05.23 |
Comments