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
반응형
'알고리즘' 카테고리의 다른 글
[백준] 1439번: 뒤집기 - python (1) | 2024.03.25 |
---|---|
[백준] 11399번: ATM - python (0) | 2024.03.25 |
[백준] 10825번: 국영수 - python (0) | 2024.03.25 |
[백준] 11656번: 접미사 배열 - python (0) | 2024.03.25 |
[백준] 10814번: 나이순 정렬 - python (0) | 2024.03.25 |