๋ฌธ์ (์ถ์ฒ: https://www.acmicpc.net/problem/2036)
< ์์ด์ ์ ์ >
๋ฌธ์ ํ์ด & ์๊ฐ
๋จ์ ์กฐ๊ฑด ๋ถ๊ธฐ๋ฅผ ํ์ฉํด์ ํด๊ฒฐํ ์ ์๋ ๋ฌธ์ ์๋ค. (0๊ณผ 1์ด ์กด์ฌํ ๋ ์กฐ๊ฑด ๋ถ๊ธฐ๋ฅผ ๋์น์ง ์์์ผ ํ๋ค.)
๋ฐ๋ก ์กฐ๊ฑด
1) 1, 3์ด ์์ ๊ฒฝ์ฐ 1*3 < 1+3์ด๋ค.
2) -8,0๊ณผ ๊ฐ์ด 0์ด ์์ผ๋ฉฐ ์์๊ฐ 1๊ฐ ์๋ค๋ฉด -8*0 > -8+0์ด๋ค.
๋ํ, 1,000,000์ด ๋์ง ์๋ ์ ์๊ฐ ์ ๋ ฅ์ผ๋ก ์ฃผ์ด์ง๋ฏ๋ก int ๋ฒ์๊ฐ ๋ฒ์ด๋๋ฏ๋ก longํ์ ์ฌ์ฉํด์ผ ํ๋ค.
my solution (Java)
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
public class _2036_ { // ์์ด์ ์ ์
public static void main(String[] args) throws IOException {
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(bf.readLine());
long arr[] = new long[n];
int neg = 0, zero = 0;
for (int i = 0; i < n; i++) {
arr[i] = Long.parseLong(bf.readLine());
if (arr[i] < 0)
neg += 1;
else if (arr[i] == 0)
zero += 1;
}
Arrays.sort(arr);
long result = 0;
int idx = 0, pos = n - neg - zero;
while (idx < n) {
if (neg > 0) {
if (neg == 1) {
if (zero > 0) {
zero -= 1;
neg -= 1;
idx += 2;
} else {
result += arr[idx];
neg -= 1;
idx += 1;
}
} else {
result += arr[idx] * arr[idx + 1];
idx += 2;
neg -= 2;
}
} else if (zero > 0) {
idx += zero;
zero = 0;
} else if (pos > 0) {
if (arr[idx] == 1) {
result += arr[idx];
idx += 1;
pos -= 1;
} else if (pos % 2 == 0) {
result += arr[idx] * arr[idx + 1];
idx += 2;
pos -= 2;
} else {
result += arr[idx];
pos -= 1;
idx += 1;
}
}
}
System.out.println(result);
}
}
Main
๋ณ์)
n : ์์ด์ ํฌ๊ธฐ
arr : ์์ด ์ ์ฅ
neg, zero, pos: ์์, 0, ์์ ๊ฐ์
result: ์ต๋ ์ ์
- ์์ด์ ํฌ๊ธฐ (n) ์ ๋ ฅ
- ์์ด ์ ๋ ฅ๋ฐ์ ํ ์ ์ฅํ ๋ฐฐ์ด ์ ๋ ฌ
์กฐ๊ฑด)
1) -8, 0๊ณผ ๊ฐ์ด ์์๊ฐ 1๊ฐ ์์ผ๋ฉฐ 0๋ ์กด์ฌํ๋ค๋ฉด ๋ ์ ์ ์ ๊ฑฐ, 0์ด ์๋ค๋ฉด ํ ์ ์ ์ ๊ฑฐ
2) -8, -5์ ๊ฐ์ด ์์๊ฐ 1๊ฐ๋ณด๋ค ๋ง๋ค๋ฉด ๋ ์ ์ ๊ณฑํ๋ฉด ์์๊ฐ ๋๋ฏ๋ก ๋ ์ ์ ์ ๊ฑฐ
3) 0์ด ์ฌ๋ฌ ๊ฐ ์๋ค๋ฉด ๊ณฑํ๊ฑฐ๋ ๋ํ๊ฑฐ๋ 0์ด๋ฏ๋ก pass
4) ์์ ์ค์์ 1, 3๊ณผ ๊ฐ์ด 1์ด ์๋ค๋ฉด 1*3 < 1+3 ์ด๋ฏ๋ก 1์ด ์์ ๋๋ ํ ์ ์๋ง ์ ๊ฑฐํ์ฌ 1 ์ ๊ฑฐํ๊ธฐ
5) 1์ ๋ค ์ ๊ฑฐํ ํ ์์๊ฐ ์ง์๊ฐ ์๋ค๋ฉด ๋ ์ ์ ์ ๊ฑฐ but 2, 3, 5์ ๊ฐ์ด ํ์๊ฐ ์๋ค๋ฉด ์์ ์๋ฅผ ํ๋ ์ ๊ฑฐํ๊ณ ๋๋จธ์ง๋ฅผ ๋ ๊ฐ์ฉ ๊ณฑํ๋ ๊ฒ์ด ํฐ ์๋ฅผ ์ป์ ์ ์์ผ๋ฏ๋ก ํ ์ ์ ์ ๊ฑฐ
- ์ต๋ ์ ์(result) ์ถ๋ ฅ
'๐Algorithm > ๐ฅBaekjoon' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Baekjoon] 16918_๋ด๋ฒ๋งจ (0) | 2023.06.30 |
---|---|
[Baekjoon] 3584_๊ฐ์ฅ ๊ฐ๊น์ด ๊ณตํต ์กฐ์ (0) | 2023.06.29 |
[Baekjoon] 1789_์๋ค์ ํฉ (0) | 2023.06.28 |
[Baekjoon] 17299_์ค๋ฑํฐ์ (0) | 2023.06.28 |
[Baekjoon] 17298_์คํฐ์ (0) | 2023.06.28 |