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
- C언어
- 파이썬
- Dynamic Programming
- group by
- Python
- 너비 우선 탐색
- 깊이 우선 탐색
- join
- 프로그래머스
- Lv. 2
- SQL
- 티스토리챌린지
- bfs
- 자바스크립트
- softeer
- SQL 고득점 KIT
- programmers
- Lv. 3
- DP
- LEVEL 2
- Lv. 1
- javascript
- select
- Java
- 소프티어
- level 3
- 동적계획법
- 오블완
- Lv. 0
- dfs
Archives
- Today
- Total
몸과 마음이 건전한 SW 개발자
Softeer Level 2 GBC Python 본문
문제 링크
https://softeer.ai/practice/6270
정답 코드
import sys
input = sys.stdin.readline
n, m = map(int, input().split())
limits = []
buildingHeight = 0
for _ in range(n):
height, speed = map(int, input().split())
buildingHeight += height
limits.append((buildingHeight, speed))
nowHeight = 0
speeds = []
maxDiff = 0
for _ in range(m):
height, speed = map(int, input().split())
nowHeight += height
speeds.append((nowHeight, speed))
prevHeight = 0
for i in range(m):
currentHeight, currentSpeed = speeds[i]
if i > 0:
prevHeight = speeds[i-1][0]
for j in range(n):
limitHeight, limitSpeed = limits[j]
if prevHeight >= limitHeight:
continue
currentDiff = currentSpeed - limitSpeed
if currentDiff > maxDiff:
maxDiff = currentDiff
if limitHeight >= currentHeight:
prevHeight = limitHeight
break
print(maxDiff)
풀이 방법
- 테스트 높이와 제한 속도 높이를 누적으로 저장했다.
- 저장한 데이터를 바탕으로 전 테스트 높이가 제한 속도 높이보다 작거나 같으면 다음 제한 속도 높이로 이동하게 만들었다.
- 해당 높이가 유효하면 prevH > limitH 이면 현재 속도 차이를 계산해서 maxDiff와 비교하면 된다.
느낀점
- 브루트포스 방식인데 이걸 그리디로 착각했다.
- 전에 풀었는데 소프티어 사이트 개선하면서 푼 기록이 사라졌기에 다시 풀어봤는데 왜 이렇게 오래 걸렸는지 모르겠다.
'알고리즘' 카테고리의 다른 글
프로그래머스 Lv. 2 행렬 테두리 회전하기 Python (1) | 2024.01.03 |
---|---|
프로그래머스 Lv. 2 교점에 별 만들기 Python (0) | 2024.01.03 |
백준 GOLD 5 [2470번] 두 용액 Python (1) | 2024.01.01 |
프로그래머스 Lv. 3 보석 쇼핑 Python (0) | 2023.12.31 |
프로그래머스 Lv. 3 베스트앨범 Python [반례 포함] (0) | 2023.12.30 |