結果

問題 No.417 チューリップバブル
ユーザー Div9851Div9851
提出日時 2017-10-06 17:40:59
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 907 bytes
コンパイル時間 2,302 ms
コンパイル使用メモリ 162,056 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 00:32:55
合計ジャッジ時間 6,445 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 9 ms
5,248 KB
testcase_10 AC 11 ms
5,248 KB
testcase_11 AC 46 ms
5,248 KB
testcase_12 AC 46 ms
5,248 KB
testcase_13 AC 18 ms
5,248 KB
testcase_14 AC 72 ms
5,248 KB
testcase_15 AC 6 ms
5,248 KB
testcase_16 AC 7 ms
5,248 KB
testcase_17 AC 39 ms
5,248 KB
testcase_18 AC 39 ms
5,248 KB
testcase_19 AC 39 ms
5,248 KB
testcase_20 AC 142 ms
5,248 KB
testcase_21 AC 143 ms
5,248 KB
testcase_22 AC 142 ms
5,248 KB
testcase_23 AC 147 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 144 ms
5,248 KB
testcase_26 AC 15 ms
5,248 KB
testcase_27 AC 102 ms
5,248 KB
testcase_28 AC 143 ms
5,248 KB
testcase_29 AC 144 ms
5,248 KB
testcase_30 AC 142 ms
5,248 KB
testcase_31 AC 142 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 5 ms
5,248 KB
testcase_34 AC 30 ms
5,248 KB
testcase_35 AC 293 ms
5,248 KB
testcase_36 AC 298 ms
5,248 KB
testcase_37 AC 301 ms
5,248 KB
testcase_38 AC 304 ms
5,248 KB
testcase_39 AC 302 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)
#define REP(i,x,n) for(int i=x;i<n;i++)
#define ALL(v) (v).begin(),(v).end()
#define MP(a,b) make_pair(a,b)
typedef long long LL;
typedef pair<int, int> PI;
typedef vector<int> VI;
const LL MOD = 1000000007LL;
int dp[200][2001];
vector<PI> G[200];
int U[200];
int N, M;
void dfs(int v, int par) {
	rep(i, M + 1) dp[v][i] = U[v];
	rep(i, G[v].size()) {
		int to = G[v][i].first;
		int cost = G[v][i].second;
		if (to == par) continue;
		dfs(to, v);
		for (int j = M; j >= 0; j--) {
			for (int k = 0; k + cost <= j; k++) {
				dp[v][j] = max(dp[v][j], dp[v][j - (k + cost)] + dp[to][k]);
			}
		}
	}
}
int main() {
	cin >> N >> M;
	rep(i, N) {
		cin >> U[i];
	}
	rep(i, N - 1) {
		int A, B, C;
		cin >> A >> B >> C;
		G[A].push_back(MP(B, C * 2));
		G[B].push_back(MP(A, C * 2));
	}
	dfs(0, -1);
	cout << dp[0][M] << endl;
}
0