-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Silver III] Title: 계단 오르기, Time: 64 ms, Memory: 34016 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# [Silver III] 계단 오르기 - 2579 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/2579) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 34016 KB, 시간: 64 ms | ||
|
||
### 분류 | ||
|
||
다이나믹 프로그래밍 | ||
|
||
### 제출 일자 | ||
|
||
2024년 4월 1일 23:11:30 | ||
|
||
### 문제 설명 | ||
|
||
<p>계단 오르기 게임은 계단 아래 시작점부터 계단 꼭대기에 위치한 도착점까지 가는 게임이다. <그림 1>과 같이 각각의 계단에는 일정한 점수가 쓰여 있는데 계단을 밟으면 그 계단에 쓰여 있는 점수를 얻게 된다.</p> | ||
|
||
<p style="text-align: center;"><img alt="" src="https://u.acmicpc.net/7177ea45-aa8d-4724-b256-7b84832c9b97/Screen%20Shot%202021-06-23%20at%203.00.46%20PM.png" style="width: 300px; height: 160px;"></p> | ||
|
||
<p style="text-align: center;"><그림 1></p> | ||
|
||
<p>예를 들어 <그림 2>와 같이 시작점에서부터 첫 번째, 두 번째, 네 번째, 여섯 번째 계단을 밟아 도착점에 도달하면 총 점수는 10 + 20 + 25 + 20 = 75점이 된다.</p> | ||
|
||
<p style="text-align: center;"><img alt="" src="https://u.acmicpc.net/f00b6121-1c25-492e-9bc0-d96377c586b0/Screen%20Shot%202021-06-23%20at%203.01.39%20PM.png" style="width: 300px; height: 190px;"></p> | ||
|
||
<p style="text-align: center;"><그림 2></p> | ||
|
||
<p>계단 오르는 데는 다음과 같은 규칙이 있다.</p> | ||
|
||
<ol> | ||
<li>계단은 한 번에 한 계단씩 또는 두 계단씩 오를 수 있다. 즉, 한 계단을 밟으면서 이어서 다음 계단이나, 다음 다음 계단으로 오를 수 있다.</li> | ||
<li>연속된 세 개의 계단을 모두 밟아서는 안 된다. 단, 시작점은 계단에 포함되지 않는다.</li> | ||
<li>마지막 도착 계단은 반드시 밟아야 한다.</li> | ||
</ol> | ||
|
||
<p>따라서 첫 번째 계단을 밟고 이어 두 번째 계단이나, 세 번째 계단으로 오를 수 있다. 하지만, 첫 번째 계단을 밟고 이어 네 번째 계단으로 올라가거나, 첫 번째, 두 번째, 세 번째 계단을 연속해서 모두 밟을 수는 없다.</p> | ||
|
||
<p>각 계단에 쓰여 있는 점수가 주어질 때 이 게임에서 얻을 수 있는 총 점수의 최댓값을 구하는 프로그램을 작성하시오.</p> | ||
|
||
### 입력 | ||
|
||
<p>입력의 첫째 줄에 계단의 개수가 주어진다.</p> | ||
|
||
<p>둘째 줄부터 한 줄에 하나씩 제일 아래에 놓인 계단부터 순서대로 각 계단에 쓰여 있는 점수가 주어진다. 계단의 개수는 300이하의 자연수이고, 계단에 쓰여 있는 점수는 10,000이하의 자연수이다.</p> | ||
|
||
### 출력 | ||
|
||
<p>첫째 줄에 계단 오르기 게임에서 얻을 수 있는 총 점수의 최댓값을 출력한다.</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from sys import stdin | ||
from collections import deque | ||
|
||
n = int(stdin.readline()) | ||
|
||
scores = [0] | ||
for _ in range(n): | ||
scores.append(int(stdin.readline())) | ||
|
||
score_streaks = [[0, 0] for _ in range(n + 1)] | ||
score_streaks[1] = [scores[1], 0] | ||
|
||
for i in range(2, n + 1): | ||
score_streaks[i][0] = max(score_streaks[i - 2]) + scores[i] | ||
score_streaks[i][1] = score_streaks[i - 1][0] + scores[i] | ||
|
||
print(max(score_streaks[n])) |