結果
問題 | No.2317 Expression Menu |
ユーザー | baLoon8128 |
提出日時 | 2023-05-26 21:38:11 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 35 ms / 2,000 ms |
コード長 | 873 bytes |
コンパイル時間 | 4,051 ms |
コンパイル使用メモリ | 264,772 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-25 05:38:43 |
合計ジャッジ時間 | 5,995 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 37 |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using ll = long long; using vi = vector<int>; using vvi = vector<vector<int>>; using pii = pair<int, int>; #define rep(i, n) for (int i = 0; i < (int)(n); ++i) #define repr(i, n) for (int i = (int)(n - 1); i >= 0; --i) void chmax(ll& a, ll b) { if (b > a) a = b; } int main() { const ll INF = 4e18; cin.tie(nullptr); ios::sync_with_stdio(false); int n, x, y; cin >> n >> x >> y; vector dp(x + 1, vector<ll>(y + 1, -INF)); dp[0][0] = 0; rep(i, n) { int a, b, c; cin >> a >> b >> c; repr(i, x - a + 1) repr(j, y - b + 1) { chmax(dp[i + a][j + b], dp[i][j] + c); } } ll ret = -INF; rep(i, x + 1) rep(j, y + 1) { chmax(ret, dp[i][j]); } cout << ret << endl; return 0; }