結果
問題 | No.417 チューリップバブル |
ユーザー | hirokazu1020 |
提出日時 | 2016-08-27 00:09:20 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,313 bytes |
コンパイル時間 | 1,574 ms |
コンパイル使用メモリ | 98,268 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 16:48:51 |
合計ジャッジ時間 | 2,320 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 3 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 3 ms
5,248 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 3 ms
5,248 KB |
testcase_33 | AC | 2 ms
5,248 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include<sstream> #include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #include<climits> #include<cmath> #include<string> #include<vector> #include<set> #include<map> #include<queue> #include<numeric> #include<functional> #include<algorithm> #include<bitset> #include<tuple> #include<unordered_set> #include<random> using namespace std; #define INF (1<<29) #define rep(i,n) for(int i=0;i<(int)(n);i++) #define all(v) v.begin(),v.end() #define uniq(v) v.erase(unique(all(v)),v.end()) long long dp[200][1001]; int n, m; int U[200]; vector<pair<int, int> > edge[200]; long long f(int u,int t,int par) { if (dp[u][t] != -1)return dp[u][t]; dp[u][0] = U[u]; for (auto p : edge[u]) { if (par == p.first)continue; for (int i = t - p.second; i >= 0; i--) { if(dp[u][i]!=-1)dp[u][i + p.second] = max(dp[u][i + p.second], dp[u][i] + f(p.first, t-i-p.second, u)); } } for (int i = 0; i <= t; i++)dp[u][i] = max(dp[u][i], dp[u][i - 1]); return dp[u][t]; } int main() { ios::sync_with_stdio(0); cin.tie(0); cin >> n >> m; m /= 2; rep(i, n)cin >> U[i]; rep(i,n-1) { int a, b, c; cin >> a >> b >> c; edge[a].emplace_back(b, c); edge[b].emplace_back(a, c); } memset(dp, -1, sizeof(dp)); cout << f(0, m, -1) << endl; return 0; }