結果
問題 | No.1163 I want to be a high achiever |
ユーザー | sten_san |
提出日時 | 2021-01-29 11:13:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,446 bytes |
コンパイル時間 | 2,301 ms |
コンパイル使用メモリ | 209,264 KB |
実行使用メモリ | 99,584 KB |
最終ジャッジ日時 | 2024-06-26 22:51:08 |
合計ジャッジ時間 | 4,726 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
6,944 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 2 ms
6,944 KB |
testcase_29 | AC | 2 ms
6,940 KB |
testcase_30 | AC | 2 ms
6,944 KB |
testcase_31 | AC | 2 ms
6,944 KB |
testcase_32 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; struct uns_t {} uns; template <typename Element, typename Head, typename ...Args> auto vec(Element init, Head arg, Args ...args) { if constexpr (sizeof...(Args) == 0) return std::vector(arg, init); else return std::vector(arg, vec(init, args...)); } template <typename Element, typename Head, typename ...Args> auto vec(uns_t, Head arg, Args ...args) { return vec(Element(), arg, args...); } int main() { #define int int64_t #define max(a, b) max(int(a), int(b)) #undef INT_MAX #define INT_MAX INT64_MAX constexpr int inf = INT_MAX / 4; int n, x; cin >> n >> x; auto a = vec<int>(uns, n); auto b = vec<int>(uns, n); for (auto &e : a) cin >> e; for (auto &e : b) cin >> e; for (auto &e : a) { e -= x; e *= -1; } sort(begin(a), end(a)); if (0 < a[0]) { cout << -1 << endl; return 0; } int all = accumulate(begin(a), end(a), 0); if (all <= 0) { cout << 0 << endl; return 0; } auto dp = vec<int>(inf, n + 1, all + 1); dp[0][0] = 0; for (int i = 1; i <= n; ++i) { for (int j = 0; j <= all; ++j) { if (a[i - 1] <= 0) { dp[i][j] = dp[i - 1][j]; } else { dp[i][j] = min(dp[i - 1][j], dp[i - 1][max(0, j - a[i - 1])] + b[i - 1]); } } } cout << dp[n][all] << endl; }