結果
問題 | No.2114 01 Matching |
ユーザー | planes |
提出日時 | 2022-11-03 17:50:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,377 bytes |
コンパイル時間 | 2,673 ms |
コンパイル使用メモリ | 196,680 KB |
実行使用メモリ | 65,348 KB |
最終ジャッジ日時 | 2024-07-18 02:07:59 |
合計ジャッジ時間 | 20,222 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 269 ms
45,736 KB |
testcase_03 | AC | 93 ms
15,872 KB |
testcase_04 | AC | 129 ms
21,140 KB |
testcase_05 | WA | - |
testcase_06 | AC | 255 ms
40,252 KB |
testcase_07 | AC | 226 ms
29,788 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 224 ms
29,052 KB |
testcase_11 | AC | 457 ms
62,600 KB |
testcase_12 | AC | 463 ms
62,628 KB |
testcase_13 | WA | - |
testcase_14 | AC | 239 ms
65,316 KB |
testcase_15 | AC | 242 ms
65,348 KB |
testcase_16 | WA | - |
testcase_17 | AC | 224 ms
29,776 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 458 ms
62,644 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 468 ms
62,728 KB |
testcase_27 | AC | 469 ms
62,704 KB |
testcase_28 | AC | 253 ms
36,124 KB |
testcase_29 | AC | 454 ms
62,608 KB |
testcase_30 | AC | 279 ms
41,444 KB |
testcase_31 | AC | 463 ms
62,528 KB |
testcase_32 | WA | - |
testcase_33 | AC | 267 ms
45,912 KB |
testcase_34 | AC | 217 ms
38,052 KB |
testcase_35 | AC | 192 ms
27,912 KB |
testcase_36 | AC | 472 ms
62,668 KB |
testcase_37 | WA | - |
testcase_38 | AC | 242 ms
36,092 KB |
testcase_39 | WA | - |
testcase_40 | AC | 181 ms
27,432 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 254 ms
40,308 KB |
testcase_44 | WA | - |
testcase_45 | AC | 418 ms
62,616 KB |
testcase_46 | WA | - |
testcase_47 | AC | 492 ms
62,520 KB |
testcase_48 | AC | 454 ms
62,592 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 228 ms
30,424 KB |
testcase_52 | AC | 243 ms
63,320 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll =long long; #define all(v) v.begin(),v.end() #define rep(i,a,b) for(int i=a;i<b;i++) #define rrep(i,a,b) for(int i=a;i>=b;i--) ll INF=2e18; int main() { ll N,M,K;cin>>N>>M>>K; vector<ll> B(N); vector<ll> A(M); for(ll i=0;i<N;i++) cin>>B[i]; for(ll i=0;i<M;i++) cin>>A[i]; sort(all(B)); sort(all(A)); if(N<M) { swap(N,M); vector<ll> C=B; B=A; A=C; } vector<vector<ll>> b(N+M,vector<ll> (0)); vector<vector<ll>> r(N+M,vector<ll> (0)); ll ind=0; map<ll,ll> S; for(ll i=0;i<N;i++) { if(!S.count(B[i]%K)) { S[B[i]%K]=ind; ind++; } b[S[B[i]%K]].push_back(B[i]/K); } ll ans=0; for(ll i=0;i<M;i++) { if(!S.count(A[i]%K)) { S[A[i]%K]=ind; ind++; } r[S[A[i]%K]].push_back(A[i]/K); } for(ll w=0;w<N+M;w++) { if(b[w].size()<r[w].size()) { cout<<-1<<endl; return 0; } if(r[w].size()==0) continue; ll x=b[w].size(); ll y=r[w].size(); ll now=y-x; vector<pair<ll,ll>> vec(0); for(auto p:b[w]) vec.push_back(make_pair(p,0)); for(auto p:r[w]) vec.push_back(make_pair(p,1)); vector<ll> R(x+y+1,0); vector<ll> Rind(0); sort(all(vec)); for(ll i=0;i<x+y;i++) { R[i]=now; if(vec[i].second==1){ Rind.push_back(i); now--; } else now++; } vector<ll> d(x+y+1,0); for(ll i=x+y-1;i>=0;i--) { d[i]=d[i+1]; if(vec[i].second==1) d[i]-=vec[i].first; else d[i]+=vec[i].first; } ll g=max(x,y); vector<vector<ll>> dp(y,vector<ll> (0)); vector<pair<ll,ll>> note(x+y+g+1,{INF,INF}); ll ri=-1; now=y-x; for(ll j=0;j<x+y;j++) { note[now+g]=make_pair(j,ri); if(vec[j].second==1) { ll fb=0; for(ll h=j+1;h<x+y;h++) { if(vec[h].second==1) break; fb++; } dp[ri+1]=vector<ll> (fb+1,INF); ll k=R[j+1]; if(note[k+g].second!=INF) { dp[ri+1][0]=d[j+1]-d[note[k+g].first]; if(note[k+g].second!=-1) { dp[ri+1][0]+=dp[note[k+g].second][note[k+g].first-Rind[note[k+g].second]]; } } for(ll h=1;h<=fb;h++) { k=R[j+h+1]; if(note[k+g].second!=INF) { dp[ri+1][h]=d[note[k+g].first]-d[j+h+1]; if(note[k+g].second!=-1) { dp[ri+1][h]+=dp[note[k+g].second].back(); } } dp[ri+1][h]=min(dp[ri+1][h],dp[ri+1][h-1]); } } if(vec[j].second==1) { now--; ri++; } else now++; } ans+=dp[y-1].back(); } cout<<ans<<endl; }