結果
問題 | No.1467 Selling Cars |
ユーザー | beet |
提出日時 | 2021-04-02 21:58:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,301 bytes |
コンパイル時間 | 2,299 ms |
コンパイル使用メモリ | 207,704 KB |
実行使用メモリ | 10,016 KB |
最終ジャッジ日時 | 2024-06-06 06:47:08 |
合計ジャッジ時間 | 12,768 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const char newl = '\n'; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} template<typename T> void drop(const T &x){cout<<x<<endl;exit(0);} template<typename T=int> vector<T> read(size_t n){ vector<T> ts(n); for(size_t i=0;i<n;i++) cin>>ts[i]; return ts; } template<typename T> vector<T> sorted(vector<T> vs){ sort(vs.begin(),vs.end()); return vs; } //INSERT ABOVE HERE using ll = long long; const ll INF = 1e18; const int MAX = 2020; ll as[MAX],bs[MAX],dp[MAX]; signed main(){ cin.tie(0); ios::sync_with_stdio(0); int m,n; cin>>m>>n; auto as_=sorted(read(m)); auto bs_=sorted(read(n)); for(int i=0;i<m;i++) as[i]=as_[i]; for(int i=0;i<n;i++) bs[i]=bs_[i]; auto solve=[&](int k)->int{ fill(dp,dp+MAX,INF); dp[0]=0; for(int j=0;j<n;j++){ for(int i=min(m,j*k);i>=0;i--){ if(i+1<=m and dp[i]>=dp[i+1]) break; ll res=0; for(int t=1;t<=k and i+t<=m;t++){ res+=abs(as[i+t-1]-bs[j]); if(dp[i+t]<=dp[i]+res) break; dp[i+t]=dp[i]+res; } } } return dp[m]; }; for(int k=1;k<=m;k++) cout<<solve(k)<<newl; return 0; }