๐ฌ ์ฒ์์ ์กฐํฉ์ ํตํด ๋ชจ๋ ๊ฒฝ์ฐ์ ์๋ฅผ ๊ตฌํ ๋ค ์ต์๊ฐ์ ๊ณ์ฐํ๋ ๋ฐฉ์์ผ๋ก ๋ฌธ์ ๋ฅผ ํด๊ฒฐํ์ผ๋, ์๊ฐ์ด๊ณผ๊ฐ ๋ฐ์ํ์ต๋๋ค.
์ต์๊ฐ๋ง ๊ตฌํ๋ ๋ฌธ์ ์ด๋ ๋ ๋ฐฐ์ด์ ์ค๋ฆ/๋ด๋ฆผ์ฐจ์ ์ผ๋ก ์ ๋ ฌํ์ฌ ์์ ์ ์ฉ์ํค๋ ๋ฐฉ์์ผ๋ก ๋ณ๊ฒฝํ์ฌ ํด๊ฒฐํ์ต๋๋ค.
๋น๋ก ํ๋ ธ์ง๋ง ์์ด์ ๋ํด ๊ณต๋ถํ๋ ์๊ฐ ์ ๊ฐ์ง ์ ์์ด ์๋ฏธ์์์ต๋๋ค.
์๋ ์์ ์ ์ํ์ด ํญ์ ํฐ ๊ณจ์นซ๊ฑฐ๋ฆฌ์๋ ๋๋ผ๊ฐ ์์๋ค. ์ด ๋๋ผ์ ๊ตญ์ ๊น์ง๋ฏผ์ ๋ค์๊ณผ ๊ฐ์ ๋ฌธ์ ๋ฅผ ๋ด๊ณ ํฐ ์๊ธ์ ๊ฑธ์๋ค.
๊ธธ์ด๊ฐ N์ธ ์ ์ ๋ฐฐ์ด A์ B๊ฐ ์๋ค. ๋ค์๊ณผ ๊ฐ์ด ํจ์ S๋ฅผ ์ ์ํ์.
S = A[0] ร B[0] + ... + A[N-1] ร B[N-1]
import java.util.Arrays;
import java.util.Scanner;
public class ์ ๋ฌผ {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
// ์ ์ฅ์ ์ ์ธ
int a[] = new int[N];
int b[] = new int[N];
// ๋ฐฐ์ด์ ์ ์ฅ
for(int n = 0; n < N; n++) {
a[n] = sc.nextInt();
}
for(int n = 0; n < N; n++) {
b[n] = sc.nextInt();
}
// a ์ ๋ ฌ
Arrays.sort(a);
// b ์ ๋ ฌ
Arrays.sort(b);
// ์ ์ผ ์์ ๊ฐ ๊ณ์ฐ
int result = 0;
for(int i = 0; i < N; i++) {
result += a[i] * b[N-i-1];
}
// ์ ๋ต ํ์
System.out.println(result);
}
}
// ์์ด๋ก ํ ๊ฒฝ์ฐ, ์๊ฐ์ด๊ณผ๊ฐ ๋ฐ์ํ๋ค.
/*
public class ์ ๋ฌผ {
static int min = Integer.MAX_VALUE;
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
// ์ ์ฅ์ ์ ์ธ
int a[] = new int[N];
int b[] = new int[N];
// ๋ฐฐ์ด์ ์ ์ฅ
for(int n = 0; n < N; n++) {
a[n] = sc.nextInt();
}
for(int n = 0; n < N; n++) {
b[n] = sc.nextInt();
}
// a ์์ ๋ฐ๊ฟ ์ ์๋ ๊ฒฝ์ฐ ์ ์ฅ (์์๊ฐ ์๊ด ์์ผ๋ ์กฐํฉ)
per(a, b, 0, N, N);
// ์ ์ผ ์์ ๊ฐ ์ถ์ถ (์ถ์ถ)
System.out.println(min);
}
static void per(int[] a, int[] b, int depth, int n, int r) {
if(depth == r) {
// ๊ฒฝ์ฐ์ ์์ ๋ง๊ฒ ๊ณ์ฐ
int result = 0;
for(int i = 0; i < n; i++) {
result += a[i] * b[i];
}
// ๊ฐ ์ ์ฅ
if(result < min) {
min = result;
}
return;
}
for(int i = depth; i < n; i++) {
swap(a, depth, i);
per(a, b, depth + 1, n, r);
swap(a, depth, i);
}
}
// ์์๋ฅผ ๋ฐ๊ฟ์ฃผ๋ ํจ์
static void swap(int[] a, int depth, int i) {
int tmp = a[depth];
a[depth] = a[i];
a[i] = tmp;
}
}
*/