結果
問題 | No.2114 01 Matching |
ユーザー | bayashiko |
提出日時 | 2022-10-19 05:09:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,535 bytes |
コンパイル時間 | 2,535 ms |
コンパイル使用メモリ | 218,880 KB |
実行使用メモリ | 56,320 KB |
最終ジャッジ日時 | 2024-06-29 10:10:54 |
合計ジャッジ時間 | 15,094 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 138 ms
18,764 KB |
testcase_03 | AC | 67 ms
14,464 KB |
testcase_04 | AC | 101 ms
18,944 KB |
testcase_05 | WA | - |
testcase_06 | AC | 63 ms
11,736 KB |
testcase_07 | AC | 63 ms
11,444 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 128 ms
14,228 KB |
testcase_11 | AC | 494 ms
56,192 KB |
testcase_12 | AC | 500 ms
56,320 KB |
testcase_13 | WA | - |
testcase_14 | AC | 138 ms
28,092 KB |
testcase_15 | AC | 137 ms
28,220 KB |
testcase_16 | WA | - |
testcase_17 | AC | 108 ms
15,560 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 488 ms
56,320 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 489 ms
56,320 KB |
testcase_27 | AC | 500 ms
56,320 KB |
testcase_28 | AC | 231 ms
32,512 KB |
testcase_29 | AC | 490 ms
56,320 KB |
testcase_30 | AC | 149 ms
15,684 KB |
testcase_31 | AC | 502 ms
56,192 KB |
testcase_32 | WA | - |
testcase_33 | AC | 136 ms
18,760 KB |
testcase_34 | AC | 62 ms
11,352 KB |
testcase_35 | AC | 158 ms
24,960 KB |
testcase_36 | AC | 485 ms
56,320 KB |
testcase_37 | WA | - |
testcase_38 | AC | 64 ms
11,404 KB |
testcase_39 | WA | - |
testcase_40 | AC | 147 ms
24,448 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 108 ms
16,252 KB |
testcase_44 | WA | - |
testcase_45 | AC | 262 ms
56,064 KB |
testcase_46 | WA | - |
testcase_47 | AC | 477 ms
56,064 KB |
testcase_48 | AC | 491 ms
56,320 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 63 ms
13,256 KB |
testcase_52 | AC | 145 ms
28,224 KB |
ソースコード
#if defined(LOCAL) #include<stdc++.h> #else #include<bits/stdc++.h> #endif #include<random> #pragma GCC optimize("Ofast") //#pragma GCC target("avx2") #pragma GCC optimize("unroll-loops") using namespace std; //#include<boost/multiprecision/cpp_int.hpp> //#include<boost/multiprecision/cpp_dec_float.hpp> //namespace mp=boost::multiprecision; //#define mulint mp::cpp_int //#define mulfloat mp::cpp_dec_float_100 struct __INIT{__INIT(){cin.tie(0);ios::sync_with_stdio(false);cout<<fixed<<setprecision(15);}} __init; //#define INF (1<<30) #define LINF (lint)(1LL<<56) #define MINF (lint)(2e18) #define endl "\n" #define rep(i,n) for(lint (i)=0;(i)<(n);(i)++) #define reprev(i,n) for(lint (i)=(n-1);(i)>=0;(i)--) #define flc(x) __builtin_popcountll(x) #define pint pair<int,int> #define pdouble pair<double,double> #define plint pair<lint,lint> #define fi first #define se second #define all(x) x.begin(),x.end() //#define vec vector<lint> #define nep(x) next_permutation(all(x)) typedef long long lint; int dx[8]={1,1,0,-1,-1,-1,0,1}; int dy[8]={0,1,1,1,0,-1,-1,-1}; const int MAX_N=3e5+5; 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(b<a){a=b;return 1;}return 0;} //vector<int> bucket[MAX_N/1000]; //constexpr int MOD=1000000007; constexpr int MOD=998244353; /*#include<atcoder/all> using namespace atcoder; typedef __int128_t llint;*/ lint solve(vector<lint> R,vector<lint> B,lint K){ lint ans=0; lint N=R.size(),M=B.size(); multiset<lint> bs; rep(i,M) bs.insert(B[i]); bs.insert(-1e18); bs.insert(1e18); rep(i,N){ auto itr=bs.lower_bound(R[i]); if(*itr!=R[i]) itr--; auto itr2=bs.upper_bound(R[i]); if(abs(R[i]-*itr)<abs(R[i]-*itr2)){ ans+=abs(R[i]-*itr); bs.erase(itr); } else{ ans+=abs(R[i]-*itr2); bs.erase(itr2); } } return ans/K; } int main(void){ lint N,M,K; cin >> N >> M >> K; vector<lint> B(N),R(M); rep(i,N) cin >> B[i]; rep(i,M) cin >> R[i]; if(N<M) swap(N,M),swap(B,R); map<int,pair<vector<lint>,vector<lint>>> mp; rep(i,N) mp[B[i]%K].fi.push_back(B[i]); rep(i,M) mp[R[i]%K].se.push_back(R[i]); lint ans=0; for(auto e:mp){ vector<lint> b=e.se.fi; vector<lint> r=e.se.se; if(b.size()<r.size()){ cout << -1 << endl; return 0; } if(r.size()) ans+=solve(r,b,K); } cout << ans << endl; }