結果
問題 | No.2114 01 Matching |
ユーザー | yamake |
提出日時 | 2022-10-28 23:16:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,361 bytes |
コンパイル時間 | 2,335 ms |
コンパイル使用メモリ | 216,784 KB |
実行使用メモリ | 51,712 KB |
最終ジャッジ日時 | 2024-07-06 02:31:18 |
合計ジャッジ時間 | 16,349 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 263 ms
14,208 KB |
testcase_03 | AC | 73 ms
14,124 KB |
testcase_04 | AC | 103 ms
18,560 KB |
testcase_05 | WA | - |
testcase_06 | AC | 254 ms
14,208 KB |
testcase_07 | AC | 255 ms
14,208 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 251 ms
14,208 KB |
testcase_11 | AC | 394 ms
51,584 KB |
testcase_12 | AC | 395 ms
51,584 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 267 ms
14,208 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 483 ms
51,584 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 465 ms
51,712 KB |
testcase_27 | AC | 396 ms
51,712 KB |
testcase_28 | AC | 231 ms
30,336 KB |
testcase_29 | AC | 496 ms
51,584 KB |
testcase_30 | AC | 267 ms
14,208 KB |
testcase_31 | AC | 398 ms
51,584 KB |
testcase_32 | WA | - |
testcase_33 | AC | 243 ms
14,208 KB |
testcase_34 | AC | 196 ms
14,208 KB |
testcase_35 | AC | 152 ms
23,936 KB |
testcase_36 | AC | 388 ms
51,712 KB |
testcase_37 | WA | - |
testcase_38 | AC | 255 ms
14,208 KB |
testcase_39 | WA | - |
testcase_40 | AC | 156 ms
23,936 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 251 ms
14,208 KB |
testcase_44 | WA | - |
testcase_45 | AC | 286 ms
51,584 KB |
testcase_46 | WA | - |
testcase_47 | AC | 440 ms
51,584 KB |
testcase_48 | AC | 411 ms
51,584 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 247 ms
14,208 KB |
testcase_52 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=0;i<n;++i) #define rep1(i,n) for(int i=1;i<=n;++i) #define rrep(i,n) for(int i=n-1;i>=0;--i) #define debug(output) if(debugFlag)cout<<#output<<"= "<<output<<"\n"; using lint = long long; typedef pair<int,int> P; const bool debugFlag=true; const lint linf=1.1e18;const int inf=1.01e9; constexpr int MOD=1000000007; template<class T>bool chmax(T &a, const T &b) { if(a <= b){ a = b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if(a > b){ a = b; return 1; } return 0; } void solve(vector<int>& a,vector<int>& b,int k){ int n=a.size();int m=b.size(); map<int,multiset<int>> mp; rep(i,m)mp[b[i]%k].insert(b[i]); lint res=0; sort(a.begin(),a.end()); rep(i,n){ auto& v=mp[a[i]%k]; auto it=v.lower_bound(a[i]); int mn=inf; if(it!=v.end())chmin(mn,(*it-a[i])/k); if(it!=v.begin()){ --it; if(chmin(mn,(a[i]-*(it))/k))v.erase(it); else{ ++it; if(it!=v.end())v.erase(it); } } res+=mn; } if(res>=inf)res=-1; cout<<res<<"\n"; } signed main(){ int n,m,k;cin>>n>>m>>k; vector<int> a(n),b(m); rep(i,n)cin>>a[i]; rep(i,m)cin>>b[i]; if(n>m)swap(a,b); solve(a,b,k); return 0; }