結果
問題 | No.2317 Expression Menu |
ユーザー | apricity |
提出日時 | 2023-11-26 13:41:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 177 ms / 2,000 ms |
コード長 | 3,020 bytes |
コンパイル時間 | 1,485 ms |
コンパイル使用メモリ | 129,072 KB |
実行使用メモリ | 216,576 KB |
最終ジャッジ日時 | 2024-09-26 11:42:25 |
合計ジャッジ時間 | 7,297 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 9 ms
18,176 KB |
testcase_03 | AC | 177 ms
216,384 KB |
testcase_04 | AC | 177 ms
216,512 KB |
testcase_05 | AC | 158 ms
216,536 KB |
testcase_06 | AC | 155 ms
216,540 KB |
testcase_07 | AC | 168 ms
216,448 KB |
testcase_08 | AC | 144 ms
216,448 KB |
testcase_09 | AC | 143 ms
216,512 KB |
testcase_10 | AC | 148 ms
216,352 KB |
testcase_11 | AC | 149 ms
216,464 KB |
testcase_12 | AC | 149 ms
216,492 KB |
testcase_13 | AC | 148 ms
216,448 KB |
testcase_14 | AC | 151 ms
216,492 KB |
testcase_15 | AC | 145 ms
216,364 KB |
testcase_16 | AC | 150 ms
216,520 KB |
testcase_17 | AC | 155 ms
216,372 KB |
testcase_18 | AC | 145 ms
216,376 KB |
testcase_19 | AC | 152 ms
216,452 KB |
testcase_20 | AC | 153 ms
216,500 KB |
testcase_21 | AC | 147 ms
216,512 KB |
testcase_22 | AC | 148 ms
216,576 KB |
testcase_23 | AC | 139 ms
216,484 KB |
testcase_24 | AC | 135 ms
216,368 KB |
testcase_25 | AC | 135 ms
216,432 KB |
testcase_26 | AC | 150 ms
216,560 KB |
testcase_27 | AC | 132 ms
216,516 KB |
testcase_28 | AC | 131 ms
216,448 KB |
testcase_29 | AC | 130 ms
216,532 KB |
testcase_30 | AC | 131 ms
216,360 KB |
testcase_31 | AC | 129 ms
216,520 KB |
testcase_32 | AC | 126 ms
216,548 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 3 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 3 ms
5,376 KB |
testcase_38 | AC | 113 ms
216,576 KB |
testcase_39 | AC | 112 ms
216,528 KB |
ソースコード
#include<iostream> #include<string> #include<vector> #include<algorithm> #include<numeric> #include<cmath> #include<utility> #include<tuple> #include<cstdint> #include<cstdio> #include<iomanip> #include<map> #include<queue> #include<set> #include<stack> #include<deque> #include<unordered_map> #include<unordered_set> #include<bitset> #include<cctype> #include<chrono> #include<random> #include<cassert> #include<cstddef> #include<iterator> #include<string_view> #include<type_traits> #ifdef LOCAL # include "debug_print.hpp" # define debug(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__) #else # define debug(...) (static_cast<void>(0)) #endif using namespace std; #define rep(i,n) for(int i=0; i<(n); i++) #define rrep(i,n) for(int i=(n)-1; i>=0; i--) #define FOR(i,a,b) for(int i=(a); i<(b); i++) #define RFOR(i,a,b) for(int i=(b-1); i>=(a); i--) #define ALL(v) v.begin(), v.end() #define RALL(v) v.rbegin(), v.rend() #define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() ); #define pb push_back using ll = long long; using D = double; using LD = long double; using P = pair<int, int>; template<typename T> using PQ = priority_queue<T,vector<T>>; template<typename T> using minPQ = priority_queue<T, vector<T>, greater<T>>; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } void yesno(bool flag) {cout << (flag?"Yes":"No") << "\n";} template<typename T, typename U> ostream &operator<<(ostream &os, const pair<T, U> &p) { os << p.first << " " << p.second; return os; } template<typename T, typename U> istream &operator>>(istream &is, pair<T, U> &p) { is >> p.first >> p.second; return is; } template<typename T> ostream &operator<<(ostream &os, const vector<T> &v) { int s = (int)v.size(); for (int i = 0; i < s; i++) os << (i ? " " : "") << v[i]; return os; } template<typename T> istream &operator>>(istream &is, vector<T> &v) { for (auto &x : v) is >> x; return is; } void in() {} template<typename T, class... U> void in(T &t, U &...u) { cin >> t; in(u...); } void out() { cout << "\n"; } template<typename T, class... U, char sep = ' '> void out(const T &t, const U &...u) { cout << t; if (sizeof...(u)) cout << sep; out(u...); } void outr() {} template<typename T, class... U, char sep = ' '> void outr(const T &t, const U &...u) { cout << t; outr(u...); } ll dp[301][301][301]; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int n,x,y; in(n,x,y); rep(i,n+1)rep(j,x+1)rep(k,y+1) dp[i][j][k] = -1; dp[0][0][0] = 0; rep(i,n){ int a,b,c; in(a,b,c); rep(j,x+1)rep(k,y+1){ if(dp[i][j][k] == -1) continue; if(j+a <= x and k+b <= y) chmax(dp[i+1][j+a][k+b], dp[i][j][k]+c); chmax(dp[i+1][j][k], dp[i][j][k]); } } ll ans = 0; rep(j,x+1)rep(k,y+1) chmax(ans, dp[n][j][k]); out(ans); }