結果
問題 | No.417 チューリップバブル |
ユーザー | ferin |
提出日時 | 2017-08-17 15:49:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 710 ms / 2,000 ms |
コード長 | 1,342 bytes |
コンパイル時間 | 1,188 ms |
コンパイル使用メモリ | 161,392 KB |
実行使用メモリ | 5,760 KB |
最終ジャッジ日時 | 2024-10-14 13:38:05 |
合計ジャッジ時間 | 10,229 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 10 ms
5,248 KB |
testcase_09 | AC | 19 ms
5,248 KB |
testcase_10 | AC | 28 ms
5,248 KB |
testcase_11 | AC | 114 ms
5,248 KB |
testcase_12 | AC | 108 ms
5,248 KB |
testcase_13 | AC | 46 ms
5,248 KB |
testcase_14 | AC | 172 ms
5,248 KB |
testcase_15 | AC | 13 ms
5,248 KB |
testcase_16 | AC | 14 ms
5,248 KB |
testcase_17 | AC | 89 ms
5,248 KB |
testcase_18 | AC | 89 ms
5,248 KB |
testcase_19 | AC | 91 ms
5,248 KB |
testcase_20 | AC | 350 ms
5,248 KB |
testcase_21 | AC | 348 ms
5,248 KB |
testcase_22 | AC | 344 ms
5,248 KB |
testcase_23 | AC | 342 ms
5,248 KB |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 348 ms
5,248 KB |
testcase_26 | AC | 34 ms
5,248 KB |
testcase_27 | AC | 253 ms
5,248 KB |
testcase_28 | AC | 345 ms
5,248 KB |
testcase_29 | AC | 342 ms
5,248 KB |
testcase_30 | AC | 352 ms
5,248 KB |
testcase_31 | AC | 347 ms
5,248 KB |
testcase_32 | AC | 5 ms
5,248 KB |
testcase_33 | AC | 15 ms
5,248 KB |
testcase_34 | AC | 150 ms
5,248 KB |
testcase_35 | AC | 700 ms
5,632 KB |
testcase_36 | AC | 693 ms
5,504 KB |
testcase_37 | AC | 710 ms
5,760 KB |
testcase_38 | AC | 704 ms
5,504 KB |
testcase_39 | AC | 704 ms
5,632 KB |
ソースコード
//#define __USE_MINGW_ANSI_STDIO 0 #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector<int> VI; typedef vector<VI> VVI; typedef vector<ll> VL; typedef vector<VL> VVL; typedef pair<int, int> PII; #define FOR(i, a, n) for (ll i = (ll)a; i < (ll)n; ++i) #define REP(i, n) FOR(i, 0, n) #define ALL(x) x.begin(), x.end() #define IN(a, b, x) (a<=x&&x<b) #define MP make_pair #define PB push_back #define INF (1LL<<30) #define LLINF (1LL<<60) #define PI 3.14159265359 #define EPS 1e-12 //#define int ll template <typename T> T &chmin(T &a, const T &b) { return a = min(a, b); } template <typename T> T &chmax(T &a, const T &b) { return a = max(a, b); } int dx[] = {0, 1, 0, -1}, dy[] = {1, 0, -1, 0}; struct edge{int to, cost;}; vector<edge> g[205]; int u[205]; int n, m; ll dp[205][2010]; void dfs(int v, int p) { dp[v][0] = u[v]; for(auto i: g[v]) { if(i.to == p) continue; dfs(i.to, v); for(int j=m; j>=0; --j) REP(k, m+1) { int t = j+i.cost*2+k; if(t <= m) chmax(dp[v][t], dp[v][j] + dp[i.to][k]); } } } signed main(void) { cin >> n >> m; REP(i, n) cin >> u[i]; REP(i, n-1) { int a, b, c; cin >> a >> b >> c; g[a].PB({b, c}); g[b].PB({a, c}); } dfs(0, -1); ll ans = 0; REP(i, m+1) chmax(ans, dp[0][i]); cout << ans << endl; return 0; }