# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
959336 | 2024-04-08T03:40:02 Z | vjudge1 | A Plus B (IOI23_aplusb) | C++17 | 0 ms | 0 KB |
vector<int> smallest_sums(int N, vector<int> A, vector<int> B) { multiset<int> res; for(int i=0 ;i<N ;i++) { for(int j=0 ;j<N ;j++) { res.insert(A[i]+B[j]); } } vector<int> x; multiset<int>::iterator itr= res.begin(); while (N--) { x.push_back(*itr); ++itr; } return x; }