알고리즘
[백준] 1026번: 보물 - python
육빔
2024. 3. 25. 18:03
728x90
반응형
https://www.acmicpc.net/problem/1026
a를 정렬한 뒤 b에서 가장 큰 것을 골라서 값을 구한뒤 삭제하는 방식으로 진행
기본적인 그리디 문제였다.
n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
a.sort()
cnt = 0
for i in range(n):
cnt += max(b) * a[i]
b.remove(max(b))
print(cnt)
728x90
반응형