結果
問題 | No.2741 Balanced Choice |
ユーザー | GOTKAKO |
提出日時 | 2024-04-20 10:45:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 70 ms / 2,000 ms |
コード長 | 893 bytes |
コンパイル時間 | 1,977 ms |
コンパイル使用メモリ | 207,636 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 06:19:49 |
合計ジャッジ時間 | 3,116 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 62 ms
6,820 KB |
testcase_01 | AC | 66 ms
6,816 KB |
testcase_02 | AC | 68 ms
6,816 KB |
testcase_03 | AC | 70 ms
6,816 KB |
testcase_04 | AC | 70 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | AC | 30 ms
6,816 KB |
testcase_08 | AC | 49 ms
6,816 KB |
testcase_09 | AC | 27 ms
6,816 KB |
testcase_10 | AC | 34 ms
6,820 KB |
testcase_11 | AC | 50 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int N,W,D; cin >> N >> W >> D; vector<pair<int,int>> Q0,Q1; for(int i=0; i<N; i++){ int t,w,v; cin >> t >> w >> v; if(t == 0) Q0.push_back({w,v}); if(t == 1) Q1.push_back({w,v}); } int inf = 1e9; vector<int> dp0(W+1,-inf),dp1(W+1,-inf); dp0.at(0) = 0; dp1.at(0) = 0; for(auto [w,v] : Q0){ for(int i=W; i>=0; i--) if(i+w <= W) dp0.at(i+w) = max(dp0.at(i+w),dp0.at(i)+v); } for(auto [w,v] : Q1){ for(int i=W; i>=0; i--) if(i+w <= W) dp1.at(i+w) = max(dp1.at(i+w),dp1.at(i)+v); } int answer = 0; for(int i=0; i<=W; i++) for(int k=0; k<=W; k++){ if(i+k > W || abs(i-k) > D) continue; answer = max(answer,dp0.at(i)+dp1.at(k)); } cout << answer << endl; }