結果
問題 | No.1947 質より種類数 |
ユーザー | kabipoyo |
提出日時 | 2022-05-20 22:55:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,492 bytes |
コンパイル時間 | 4,160 ms |
コンパイル使用メモリ | 270,096 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-20 09:18:03 |
合計ジャッジ時間 | 7,515 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 6 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 12 ms
5,376 KB |
testcase_13 | AC | 5 ms
5,376 KB |
testcase_14 | AC | 76 ms
5,376 KB |
testcase_15 | AC | 39 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 139 ms
5,376 KB |
testcase_18 | AC | 248 ms
5,376 KB |
testcase_19 | AC | 222 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | AC | 195 ms
5,376 KB |
testcase_22 | AC | 12 ms
5,376 KB |
testcase_23 | AC | 87 ms
5,376 KB |
testcase_24 | AC | 4 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 3 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | AC | 306 ms
5,376 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 40 ms
5,376 KB |
testcase_35 | AC | 39 ms
5,376 KB |
testcase_36 | AC | 288 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(int i=0; i<n; i++) #define repx(i, l, n) for(int i=l; i<n; i++) #define all(v) v.begin(), v.end() #define show(x) cout << #x << ": " << x << endl; #define list(x) cout << #x << ": " << x << " "; #define pb push_back using vi = vector<lint>; using vvi = vector<vector<lint>>; template<class T> inline void vin(vector<T>& v) { rep(i, v.size()) cin >> v.at(i); } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<class T> inline void drop(T x) { cout << x << endl; exit(0); } template<class T> void vout(vector<T> v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; using pint = pair<double, lint>; using vp = vector<pint>; int main() { lint N, V, C; cin >> N >> V >> C; vi v(N), w(N); lint a=0, b=0, c=0, x, y, z; rep(i, N) cin >> v[i] >> w[i]; vi dp(V+1); rep(i, N) { for (int j = V; j >= 0; j--) { if (j+v[i] < V) chmax(dp[j+v[i]], dp[j]+w[i]+C); } } vp p(N); rep(i, N) { p[i] = {w[i]/v[i], i}; } sort(all(p), greater()); rep(i, N) { z = p[i].second; for (int j = V; j >= 0; j--) { if (j+v[z] < V) { x = (V-j)/v[z]; chmax(dp[j+v[z]*x], dp[j]+w[z]*x); } } } rep(i, V+1) chmax(a, dp[i]); std::cout << a << '\n'; }