# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1104599 | Nonoze | A + B (IOI24_aplusb) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "aplusb.h"
#include <bits/stdc++.h>
using namespace std;
#define sz(x) (int)(x.size())
#define debug(x) cerr << (#x) << ": " << (x) << endl
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
vector<int> smallest_sums(int N, vector<int> A, vector<int> B) {
int n=N;
auto a=A, b=B;
priority_queue<tuple<int, int, int>, vector<tuple<int, int, int>>, greater<>> pq;
for (int i=0; i<n; i++) pq.push({a[i] + b[0], i, 0});
vector<int> ans;
while (sz(ans)<n) {
int val, x, y;
tie(val, x, y)=pq.top(); pq.pop();
ans.push_back(val);
if (y+1<n) pq.push({a[x]+b[y+1], x, y+1});
}
return ans;
}