# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
840094 | Faisal_Saqib | A Plus B (IOI23_aplusb) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
vector<int> smallest_sum(int n,vector<int> a,vector<int> b)
{
vector<int> ans;
int can[a.size()];
int n=a.size();
int m=b.size();
for(int i=0;i<n;i++)
{
can[i]=0;
}
set<pair<int,pair<int,int>>> pq;
pq.insert({a[0]+b[0],{0,0}});
while(ans.size()<(k) and pq.size()>0)
{
auto p=*begin(pq);
pq.erase(begin(pq));
ans.push_back(p.first);
if(p.second.first< (n-1)){
pq.insert({a[p.second.first+1]+b[can[p.second.first+1]],{p.second.first+1,can[p.second.first+1]}});
}
if(p.second.second< (m-1))
{
pq.insert({a[p.second.first]+b[p.second.second+1],{p.second.first,p.second.second+1}});
can[p.second.first]+=1;
}
}
return ans;
}