๋กํ๋ค์ ์ฌ์ฉํด์ ๋ค์ด์ฌ๋ฆด ์ ์๋ ์ต๋ ์ค๋์ ๊ตฌํ๋ ๋ฌธ์ ์ด๋ค. ๋ชจ๋ ๋กํ๋ฅผ ์ฌ์ฉํ์ง ์์๋ ๋๊ณ ๋กํ๋ฅผ ์ฌ์ฉํด์ ๋ค์ด์ฌ๋ฆด ๋๋ ๊ฐ ๋กํ์ ์ค๋(w)์ ๋ค์ด์ฌ๋ฆฌ๋ ๋กํ์ ๊ฐ์(k)๋ก ๋๋ ๋งํผ ๋ฌด๊ฒ๊ฐ ๊ฐํด์ง๊ฒ ๋๋ค.
์ค๋์ด ๋์์ง์๋ก ๊ฐ ๋กํ์ ๊ฐํด์ง๋ ๋ฌด๊ฒ๋ ๋์์ง๊ฒ ๋๊ธฐ ๋๋ฌธ์ ์ด ๋ฌด๊ฒ๋ค์ ๋ฒํฐ๊ธฐ ์ํด์๋ ๋ฒํธ ์ ์๋ ์ค๋์ ๋ฌด๊ฒ๊ฐ ๋ฌด๊ฑฐ์ด ๋กํ๋ค ์์ฃผ๋ก ๊ณ์ฐํ๋ ๊ฒ ์ ๋ฆฌํ๋ค.
์ฌ๋ฌ ๊ฐ์ ๋กํ๊ฐ ์์ ๋ ๋ค์ด์ฌ๋ฆด ์ ์๋ ์ค๋์ ๋ฌด๊ฒ๋ฅผ ๊ณ์ฐํ๊ธฐ ์ํด์๋ ์ฐ์ ์ฌ๋ฌ ๊ฐ ๋กํ ๊ฐ์ด๋ฐ ๋ฒํธ ์ ์๋ ์ค๋์ด ์ต์์ธ ๋กํ๋ฅผ ์ฐพ์์ผ ํ๋ค. ๊ฐ ๋กํ์ ๊ฐํด์ง๋ ์ค๋์ด w/k์ด๊ธฐ ๋๋ฌธ์ ์ค๋์ด ์ต์์ธ ๋กํ๋ง ๋ฒํธ ์ ์๋ค๋ฉด ๋ค๋ฅธ ๋ชจ๋ ๋กํ๋ค๋ ๋ฒํธ ์ ์๊ธฐ ๋๋ฌธ์ด๋ค. ์ต์ ๋กํ์ ์ค๋์ ์ฐพ์ ๋กํ์ ๊ฐ์(k)๋งํผ ๊ณฑํ๊ฒ ๋๋ฉด ์ ์ฒด ๋กํ๋ค์ด ๋ฒํธ ์ ์๋ ์ค๋์ ๊ตฌํ ์ ์๋ค.
๊ฒฐ๊ตญ ๋ด๋ฆผ์ฐจ์์ผ๋ก ์ ๋ ฌํ์ฌ ๋ฒํธ ์ ์๋ ์ค๋์ ๋ฌด๊ฒ๊ฐ ๋์ ๋กํ๋ค๋ถํฐ ๋ฎ์ ๋กํ๋ค ์์๋๋ก ๋ค ํฉ์ณ์ ๋ค์์ ๋ ์ต๋๋ก ๋ค ์ ์๋ ๋ฌด๊ฒ๋ฅผ ๊ตฌํ๋ฉด ๋๋ค. ํ์ฌ๊น์ง ๊ตฌํ ๋กํ์ ๊ฐ์๋ i
์ด๊ณ ์ต์ ์ค๋ ๋กํ๋ ๋ด๋ฆผ์ฐจ์์ผ๋ก ๋์ด์์ผ๋ฏ๋ก ํ์ฌ ๋กํ์ ์ค๋ rope[i]
์ด ๋๋ค.
Arrays.stream(rope).boxed().sorted(Collections.reverseOrder()).mapToInt(Integer::intValue).toArray();
int[]
๋ฐฐ์ด์ ๋ด๋ฆผ์ฐจ์ ์ ๋ ฌ. Interger[]
๋ก ๋ฐ์ฑํ ํ ๋ด๋ฆผ์ฐจ์ ์ ๋ ฌํ๊ณ ๋ค์ int[]
๋ฐฐ์ด๋ก ๋ณํํ์ฌ ๋ฐํ.
// ๋กํ
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
int[] rope = new int[N];
for (int i = 0; i < rope.length; i++) {
rope[i] = Integer.parseInt(br.readLine());
}
rope = Arrays.stream(rope).boxed().sorted(Collections.reverseOrder()).mapToInt(Integer::intValue).toArray();
int max_weight = 0;
for (int i = 0; i < rope.length; i++) {
int tmp = rope[i] * (i+1);
if (max_weight < tmp) {
max_weight = tmp;
}
}
System.out.println(max_weight);
}
}