# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
979661 | canadavid1 | A Plus B (IOI23_aplusb) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "aplusb.h"
#include <set>
#include <utility>
std::vector<int> smallest_sums(int N, std::vector<int> A, std::vector<int> B) {
auto cmp = [&](auto a,auto b){return A[a.first]+B[a.second]<A[b.first]+B[b.second];};
std::set<std::pair<int,int>,decltype(cmp)> q(cmp);
std::vector<int> out;
q.emplace(0,0);
while(out.size()<N)
{
auto[a,b] = *out.begin();
out.push(A[a]+B[b]);
out.erase(out.begin());
if(a+1<N) out.emplace(a+1,b);
if(b+1<N) out.emplace(a,b+1);
}
return out;
}