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 |
Tags
- python자료형
- 코테
- 백준
- 그리디
- Git
- 1주차(1)
- 코딩테스트
- Workbench
- 인텔리제이
- DP
- git오류
- git 오류
- 파이썬 알고리즘 인터뷰
- #코린이 #코딩 #할 수 있다
- 최단거리
- c언어
- 데베시 1주차
- c언어 제어문
- 인스타
- 도커
- 4장
- python기본
- 운체 1주차
- python기초
- c언어 기본
- 참고X
- 자료구조
- git기초
- 스택
- 5장
Archives
- Today
- Total
하루살이 개발자
[BaekJoon 2579번] 계단오르기 문제(Python) 본문
코딩테스트 연습 3일차
계단오르기 문제입니다.
문제링크: https://www.acmicpc.net/problem/2579
Solution
import sys
input = sys.stdin.readline
n = int(input()) #계단의 개수
score = []
sum = []
for _ in range(n): #점수 넣기
score.append(int(input()))
if n==1:
print(score[0])
elif n == 2:
print(max(score[0]+score[1], score[1]))
else:
sum.append(score[0])
sum.append(max(score[0] + score[1], score[1]))
sum.append(max(score[0] + score[2], score[1] + score[2]))
for i in range(3, n):
sum.append(max(sum[i-3] + score[i-1] + score[i], sum[i-2] + score[i]))
print(sum[-1])
또는
import sys
input = sys.stdin.readline
n = int(input()) #계단의 개수
score = []
sum = []
for _ in range(n): #점수 넣기
score.append(int(input()))
if n==1:
print(score[0])
exit()
elif n == 2:
print(max(score[0]+score[1], score[1]))
exit()
sum.append(score[0])
sum.append(max(score[0] + score[1], score[1]))
sum.append(max(score[0] + score[2], score[1] + score[2]))
for i in range(3, n):
sum.append(max(sum[i-3] + score[i-1] + score[i], sum[i-2] + score[i]))
print(sum[-1])
풀이
마지막 계단 전 계단을 포함하느냐, 안하느냐에 따라 나누기
'코딩테스트' 카테고리의 다른 글
[BaekJoon 14916번] 거스름돈 문제(Python) (0) | 2022.01.10 |
---|---|
[BaekJoon 2839번] 설탕배달 문제(Python) (0) | 2022.01.10 |
[BaekJoon 20365번] 블로그2 문제(Python) (0) | 2022.01.05 |
[BaekJoon 20115번] 에너지 드링크 문제(Python) (0) | 2022.01.05 |
[BaekJoon 13305번] 주유소 문제(Python) (0) | 2022.01.05 |