結果
問題 | No.2114 01 Matching |
ユーザー | kotatsugame |
提出日時 | 2022-10-28 23:33:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,458 bytes |
コンパイル時間 | 1,061 ms |
コンパイル使用メモリ | 100,988 KB |
実行使用メモリ | 53,632 KB |
最終ジャッジ日時 | 2024-07-06 02:50:02 |
合計ジャッジ時間 | 17,776 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 293 ms
17,556 KB |
testcase_03 | AC | 72 ms
14,080 KB |
testcase_04 | AC | 105 ms
18,304 KB |
testcase_05 | WA | - |
testcase_06 | AC | 149 ms
5,596 KB |
testcase_07 | AC | 148 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 259 ms
11,004 KB |
testcase_11 | AC | 469 ms
53,376 KB |
testcase_12 | AC | 454 ms
53,504 KB |
testcase_13 | WA | - |
testcase_14 | AC | 285 ms
29,792 KB |
testcase_15 | AC | 281 ms
29,916 KB |
testcase_16 | WA | - |
testcase_17 | AC | 229 ms
13,292 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 488 ms
53,376 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 78 ms
12,616 KB |
testcase_26 | AC | 468 ms
53,504 KB |
testcase_27 | AC | 472 ms
53,504 KB |
testcase_28 | AC | 231 ms
31,104 KB |
testcase_29 | AC | 469 ms
53,376 KB |
testcase_30 | AC | 151 ms
5,720 KB |
testcase_31 | AC | 476 ms
53,376 KB |
testcase_32 | WA | - |
testcase_33 | AC | 267 ms
17,368 KB |
testcase_34 | AC | 155 ms
5,376 KB |
testcase_35 | AC | 157 ms
24,064 KB |
testcase_36 | AC | 471 ms
53,632 KB |
testcase_37 | WA | - |
testcase_38 | AC | 151 ms
5,632 KB |
testcase_39 | WA | - |
testcase_40 | AC | 153 ms
23,424 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 222 ms
13,548 KB |
testcase_44 | WA | - |
testcase_45 | AC | 308 ms
53,376 KB |
testcase_46 | WA | - |
testcase_47 | AC | 462 ms
53,376 KB |
testcase_48 | AC | 465 ms
53,504 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 150 ms
5,376 KB |
testcase_52 | AC | 288 ms
29,788 KB |
コンパイルメッセージ
main.cpp:10:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 10 | main() | ^~~~
ソースコード
#include<iostream> #include<map> #include<vector> #include<algorithm> #include<queue> #include<set> using namespace std; int N,M,K; map<int,pair<vector<int>,vector<int> > >mp; main() { cin>>N>>M>>K; for(int i=0;i<N+M;i++) { int A;cin>>A; if(i<N)mp[A%K].first.push_back(A/K); else mp[A%K].second.push_back(A/K); } long ans=0; for(auto it=mp.begin();it!=mp.end();it++) { vector<int>B,R; B.swap(it->second.first); R.swap(it->second.second); if(N>M)B.swap(R); if(B.size()>R.size()||N==M&&B.size()!=R.size()) { cout<<-1<<endl; return 0; } sort(B.begin(),B.end()); priority_queue<long>LQ; multiset<pair<long,long> >RS,RSS; for(int r:R) { RS.insert(make_pair(r,0)); RSS.insert(make_pair(r+0,0)); } for(int b:B) { while(!RS.empty()&&RS.begin()->first<=b) { pair<long,long>p=*RS.begin(); RS.erase(RS.begin()); RSS.erase(RSS.find(make_pair(p.first+p.second,p.second))); LQ.push(p.first-p.second); } long l=1e15,r=1e15; if(!LQ.empty())l=b-LQ.top(); if(!RSS.empty())r=RSS.begin()->first-b; if(l<=r) { ans+=l; LQ.pop(); } else { ans+=r; pair<long,long>p=*RSS.begin(); RSS.erase(RSS.begin()); RS.erase(RS.find(make_pair(p.first-p.second,p.second))); if(l<(long)1e15) { int v=p.first-p.second; RS.insert(make_pair(v,l-(v-b))); RSS.insert(make_pair(v+l-(v-b),l-(v-b))); LQ.pop(); } } } } cout<<ans<<endl; }