結果
問題 | No.2114 01 Matching |
ユーザー | kotatsugame |
提出日時 | 2022-10-28 22:40:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,128 bytes |
コンパイル時間 | 1,050 ms |
コンパイル使用メモリ | 95,908 KB |
実行使用メモリ | 53,504 KB |
最終ジャッジ日時 | 2024-07-06 01:53:35 |
合計ジャッジ時間 | 16,418 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 188 ms
5,888 KB |
testcase_03 | AC | 91 ms
13,952 KB |
testcase_04 | AC | 138 ms
18,304 KB |
testcase_05 | WA | - |
testcase_06 | AC | 165 ms
5,600 KB |
testcase_07 | AC | 168 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 190 ms
5,376 KB |
testcase_11 | AC | 602 ms
53,376 KB |
testcase_12 | AC | 606 ms
53,504 KB |
testcase_13 | WA | - |
testcase_14 | AC | 173 ms
5,604 KB |
testcase_15 | AC | 173 ms
5,604 KB |
testcase_16 | WA | - |
testcase_17 | AC | 181 ms
5,744 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 600 ms
53,376 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 599 ms
53,504 KB |
testcase_27 | AC | 603 ms
53,504 KB |
testcase_28 | AC | 284 ms
31,104 KB |
testcase_29 | AC | 603 ms
53,376 KB |
testcase_30 | AC | 165 ms
5,596 KB |
testcase_31 | AC | 597 ms
53,376 KB |
testcase_32 | WA | - |
testcase_33 | AC | 190 ms
5,976 KB |
testcase_34 | AC | 169 ms
5,376 KB |
testcase_35 | AC | 199 ms
23,936 KB |
testcase_36 | AC | 592 ms
53,504 KB |
testcase_37 | WA | - |
testcase_38 | AC | 167 ms
5,504 KB |
testcase_39 | WA | - |
testcase_40 | AC | 201 ms
23,424 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 179 ms
5,872 KB |
testcase_44 | WA | - |
testcase_45 | AC | 361 ms
53,248 KB |
testcase_46 | WA | - |
testcase_47 | AC | 587 ms
53,376 KB |
testcase_48 | AC | 589 ms
53,504 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 165 ms
5,376 KB |
testcase_52 | AC | 173 ms
5,596 KB |
コンパイルメッセージ
main.cpp:9:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 9 | main() | ^~~~
ソースコード
#include<iostream> #include<map> #include<vector> #include<algorithm> #include<queue> 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); else mp[A%K].second.push_back(A); } 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()); sort(R.begin(),R.end()); queue<int>RQ; for(int r:R)RQ.push(r); priority_queue<int>Q; for(int b:B) { while(!RQ.empty()&&RQ.front()<=b) { Q.push(RQ.front()); RQ.pop(); } if(RQ.empty()) { ans+=(b-Q.top())/K; Q.pop(); } else if(Q.empty()) { ans+=(RQ.front()-b)/K; RQ.pop(); } else { int l=b-Q.top(),r=RQ.front()-b; if(l<=r) { ans+=l/K; Q.pop(); } else { ans+=r/K; Q.push(RQ.front()-(l-r)); RQ.pop(); } } } } cout<<ans<<endl; }