結果
問題 | No.2114 01 Matching |
ユーザー | yamake |
提出日時 | 2022-10-28 23:15:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,360 bytes |
コンパイル時間 | 2,054 ms |
コンパイル使用メモリ | 217,332 KB |
実行使用メモリ | 25,884 KB |
最終ジャッジ日時 | 2024-07-06 02:29:45 |
合計ジャッジ時間 | 9,821 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
ソースコード
#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; }