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
- 애드 혹
- 정렬
- BFS
- 그래프
- boj
- DP
- 모던 JavaScript 튜토리얼
- 맵
- 정수론
- 해시 테이블
- 브루트포스
- 싸피
- 13164
- Python
- 그리디
- SSAFY
- 2357
- 플로이드-워셜
- 문자열
- 누적 합
- JavaScript
- 에라토스테네스의 체
- 세그먼트 트리
- 트리
- 수학
- DFS
- 슬라이딩 윈도우
- 이분 탐색
- 구현
- 투 포인터
Archives
- Today
- Total
흙금이네 블로그
[BOJ] 16208 - 귀찮음 (Python) 본문
아이디어
최소 비용으로 막대를 자르기 위해서는 막대 길이가 작은 것부터 잘라야 한다.
풀이 #1
sorted 함수 또는 sort 메서드를 이용하여 정렬한 후 비용을 계산한다.
def solution():
n = int(input())
a = sorted(map(int, input().split()))
total = sum(a)
res = 0
for i in range(n-1):
total -= a[i]
res += a[i]*total
print(res)
solution()
풀이 #2
계수 정렬을 이용하여 정렬한 후 비용을 계산한다.
def solution():
_ = int(input())
cnt_list = [0]*102
total = 0
for a in map(int, input().split()):
cnt_list[a] += 1
total += a
res = 0
for a in range(1, 102):
for _ in range(cnt_list[a]):
total -= a
res += a*total
print(res)
solution()
'알고리즘' 카테고리의 다른 글
[BOJ] 2352 - 반도체 설계 (Python) (0) | 2023.03.23 |
---|---|
[BOJ] 17822 - 원판 돌리기 (Python) (0) | 2023.03.23 |
[BOJ] 25496 - 장신구 명장 임스 (Python) (0) | 2023.03.22 |
[BOJ] 17779 - 게리맨더링 2 (Python) (0) | 2023.03.22 |
[BOJ] 16236 - 아기 상어 (Python) (0) | 2023.03.21 |
Comments