結果
問題 | No.1163 I want to be a high achiever |
ユーザー | hiro71687k |
提出日時 | 2023-03-27 19:07:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,191 bytes |
コンパイル時間 | 3,870 ms |
コンパイル使用メモリ | 262,712 KB |
実行使用メモリ | 60,544 KB |
最終ジャッジ日時 | 2024-09-19 14:27:54 |
合計ジャッジ時間 | 7,483 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | TLE | - |
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> #include <atcoder/all> using namespace std; using namespace atcoder; using ll=int; using ld=long double; ld pie=3.141592653589793; ll inf=1444999994; ll mod=1000000007; int main(){ ll n,x; cin >> n >> x; vector<ll>a(n),b(n); ll sum=0; for (ll i = 0; i < n; i++) { cin >> a[i]; sum+=a[i]; } for (ll i = 0; i < n; i++) { cin >> b[i]; } vector<vector<ll>>dp(sum+1,vector<ll>(n,inf)); dp[sum][0]=0; dp[sum-a[0]][1]=b[0]; for (ll i = 1; i < n; i++) { for (ll j = n-2; j >=0; j--) { for (ll k = sum; k >=0; k--) { if (dp[k][j]==inf) { continue; } dp[k-a[i]][j+1]=min(dp[k-a[i]][j+1],dp[k][j]+b[i]); } } } ll ans=inf; for (ll i = 0; i <= sum; i++) { for (ll j = 0; j < n; j++) { if ((n-j)*x<=i) { ans=min(ans,dp[i][j]); } } } if (ans==inf) { cout << -1 << endl; return 0; }else{ cout << ans << endl; } }