티스토리 뷰
1.거꾸로 봐서 현재보다 큰 것이 있다면 M 갱신.
2. 큰 것이 없다면 M에서 빼준 값을 누적 합을 구해주기
*****이 문제는 SWEA에 있는 1859번 백만장자 프로젝트 문제와 같은 문제이다*****
T = int(input())
for tc in range(T):
N = int(input())
lst = list(map(int, input().split()))
lst.reverse() #거꾸로 보기
M = lst[0]
ans = 0
for i in range(len(lst)):
if M >= lst[i]:
ans += M - lst[i]
else:
M = lst[i] # 큰게 있다면 최고가 갱신
print(ans)
런타임에러 난 코드(인덱스 에러)
##########런타임에러#########
T = int(input())
for tc in range(T):
N = int(input())
lst = list(map(int, input().split()))
ans = 0
while len(lst) > 1:
M = max(lst) #최고가,갱신
idx = lst.index(M)
if idx == 0:
lst.pop(0)
continue
sum_idx = 0
for i in range(idx):
sum_idx += lst[i]
ans += M * idx - sum_idx
# 제거해주기
for i in range(idx):
lst.pop(i)
lst.pop(0)
print(ans)
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 15649 . N과 M (1) (0) | 2021.04.20 |
---|---|
[백준] 2217. 로프 (0) | 2021.04.19 |
[백준] 1931 . 회의실 배정 (0) | 2021.04.15 |
[백준] 13305. 주유소 (0) | 2021.04.14 |
[백준] 2003. 수들의 합2 (0) | 2021.04.13 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- git
- SSAFY퇴소
- 백준
- 안드로이드스튜디오
- AWS
- N과M
- 독학
- 위클리챌린지2주차
- vue
- vue.js
- commit되돌리기
- SWEA
- DOM
- splide
- Java
- javascript
- Python
- 자바
- 트리
- 배포
- SSAFY
- Pyhton
- 프로그래머스
- 비동기패턴
- SQL
- 세션 스토리지
- 싸피
- 파이썬
- 알고리즘
- django
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함