[문제]
https://www.acmicpc.net/problem/2217
[풀이]
그리디 알고리즘
[코드]
#include <bits/stdc++.h>
using namespace std;
int n;
int w[100005];
int main(void) {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n;
for(int i=0; i<n; i++) cin >> w[i];
sort(w, w+n);
int ans=0;
for(int i=1; i<=n; i++)
ans = max(ans, w[n-i]*i);
cout << ans;
}
'✏️ Algorithm > 알고리즘 풀이' 카테고리의 다른 글
백준 1475번 - C++ 방 번호 (0) | 2022.04.14 |
---|---|
백준 1931번: 회의실 배정 - C++ (0) | 2022.02.26 |
백준 1026번: 보물 - C++ (0) | 2022.02.26 |
백준 11659번 구간 합 구하기 4 - C++ (0) | 2022.02.16 |
백준 11726번 2xn 타일링 - C++ (0) | 2022.02.16 |