結果

問題 No.417 チューリップバブル
ユーザー E31415926E31415926
提出日時 2017-02-21 20:10:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 736 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 1,640 ms
コンパイル使用メモリ 170,640 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-06-09 18:06:55
合計ジャッジ時間 11,531 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 22 ms
5,376 KB
testcase_10 AC 31 ms
5,376 KB
testcase_11 AC 115 ms
5,376 KB
testcase_12 AC 115 ms
5,376 KB
testcase_13 AC 47 ms
5,376 KB
testcase_14 AC 181 ms
5,376 KB
testcase_15 AC 14 ms
5,376 KB
testcase_16 AC 14 ms
5,376 KB
testcase_17 AC 96 ms
5,376 KB
testcase_18 AC 95 ms
5,376 KB
testcase_19 AC 96 ms
5,376 KB
testcase_20 AC 363 ms
5,376 KB
testcase_21 AC 365 ms
5,376 KB
testcase_22 AC 364 ms
5,376 KB
testcase_23 AC 363 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 365 ms
5,376 KB
testcase_26 AC 35 ms
5,376 KB
testcase_27 AC 255 ms
5,376 KB
testcase_28 AC 366 ms
5,376 KB
testcase_29 AC 365 ms
5,376 KB
testcase_30 AC 365 ms
5,376 KB
testcase_31 AC 364 ms
5,376 KB
testcase_32 AC 5 ms
5,376 KB
testcase_33 AC 16 ms
5,376 KB
testcase_34 AC 164 ms
5,376 KB
testcase_35 AC 736 ms
5,632 KB
testcase_36 AC 731 ms
5,504 KB
testcase_37 AC 732 ms
5,760 KB
testcase_38 AC 733 ms
5,504 KB
testcase_39 AC 733 ms
5,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
#define rep(i,n) for(int i=0;i<(n);++i)
#define INF (1ll<<60)
typedef pair<int, int> pii;
#define FI first
#define SE second
#define all(s) s.begin(),s.end()
#define RREP(i,n) for(int i=(n)-1;i>=0;--i)
int N, M;
int U[210];
vector<pii> G[210];
int dp[210][2010];

void dfs(int i, int par) {
	dp[i][0] = U[i];
	for (auto p : G[i]) {
		if (p.FI != par) {
			dfs(p.FI, i);

			int j = p.FI;
			int c = p.SE;
			RREP(ii,M+1)
			{
				rep(jj,M+1)
				{
					int t = ii + 2 * c + jj;
					if (t <= M)
						dp[i][t] = max(dp[i][t], dp[i][ii] + dp[j][jj]);
				}
			}
		}
	}
}

signed 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(pii(b, c));
		G[b].push_back(pii(a, c));
	}
	dfs(0, -1);
	int ans = 0;
	rep(i,M+1)
	{
		ans = max(ans, dp[0][i]);
	}
	cout << ans << endl;
}
0