문제: https://www.acmicpc.net/problem/1026
1000번과 1001번 이후로 가장 쉬운 문제인거 같네요.
my solving
c++
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | #include <fstream> #include <iostream> #include <cstring> #include <climits> #include <algorithm> #include <vector> using namespace std; typedef long long ll; int main() { int n; cin >> n; vector<int> a, b; for (int k = 0; k < 2; k++) { for (int i = 0; i < n; i++) { int num; cin >> num; if (k == 0) a.push_back(num); else b.push_back(num); } } sort(a.begin(), a.end()); sort(b.begin(), b.end()); int ret = 0; for (int i = 0; i < n; i++) ret += (a[i] * b[n - i - 1]); cout << ret << endl; return 0; } | cs |
'Algorithm, Data structure > Solved Algorithmic Problem' 카테고리의 다른 글
BAEKJOON 1028 - 다이아몬드 광산 (0) | 2016.08.11 |
---|---|
BAEKJOON 1027 - 고층 건물 (0) | 2016.08.10 |
BAEKJOON 1024 - 수열의 합 (0) | 2016.08.08 |
BAEKJOON 1022 - 소용돌이 예쁘게 출력하기 (2) | 2016.08.04 |
BAEKJOON 1021 - 회전하는 큐 (0) | 2016.08.03 |