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
- 모던 JavaScript 튜토리얼
- 슬라이딩 윈도우
- 맵
- 수학
- 해시 테이블
- 애드 혹
- 그래프
- 트리
- 이분 탐색
- Python
- 브루트포스
- 구현
- JavaScript
- DP
- 문자열
- 13164
- 누적 합
- BFS
- 정수론
- 2357
- 싸피
- 정렬
- 그리디
- 플로이드-워셜
- DFS
- boj
- 세그먼트 트리
- SSAFY
- 투 포인터
- 에라토스테네스의 체
Archives
- Today
- Total
흙금이네 블로그
[BOJ] 20061 - 모노미노도미노 2 (Python) 본문
아이디어
조건에 따라 블록을 처리하는 보드를 구현하되, 블록을 쉽게 처리하기 위해 파란색 보드는 전치하여 구현한다.
풀이
import sys
input = sys.stdin.readline
def solution():
N = int(input())
green = [[0]*4 for _ in range(6)]
blue = [[0]*4 for _ in range(6)]
score = cnt = 0
for _ in range(N):
t, x, y = map(int, input().split())
if t == 1:
cnt += 2
for r in range(2, 6):
if green[r][y]:
green[r-1][y] = 1
break
else:
green[5][y] = 1
for c in range(2, 6):
if blue[c][x]:
blue[c-1][x] = 1
break
else:
blue[5][x] = 1
else:
cnt += 4
if t == 3:
green, blue = blue, green
x, y = y, x
for r in range(2, 6):
if green[r][y] or green[r][y+1]:
green[r-1][y] = green[r-1][y+1] = 1
break
else:
green[5][y] = green[5][y+1] = 1
for c in range(2, 6):
if blue[c][x]:
blue[c-1][x] = blue[c-2][x] = 1
break
else:
blue[5][x] = blue[4][x] = 1
if t == 3:
green, blue = blue, green
for i in range(2, 6):
if sum(green[i]) == 4:
score += 1
cnt -= 4
del green[i]
green = [[0]*4]+green
if sum(blue[i]) == 4:
score += 1
cnt -= 4
del blue[i]
blue = [[0]*4]+blue
while sum(green[1]) != 0:
cnt -= sum(green.pop())
green = [[0]*4]+green
while sum(blue[1]) != 0:
cnt -= sum(blue.pop())
blue = [[0]*4]+blue
print(score)
print(cnt)
solution()
'알고리즘' 카테고리의 다른 글
[BOJ] 19236 - 청소년 상어 (Python) (0) | 2023.03.30 |
---|---|
[BOJ] 11256 - 사탕 (Python) (0) | 2023.03.28 |
[BOJ] 17837 - 새로운 게임 2 (Python) (0) | 2023.03.27 |
[BOJ] 17825 - 주사위 윷놀이 (Python) (0) | 2023.03.26 |
[BOJ] 13711 - LCS 4 (Python) (0) | 2023.03.25 |
Comments