結果

問題 No.417 チューリップバブル
ユーザー ttkkggwwttkkggww
提出日時 2020-04-01 15:56:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 839 ms / 2,000 ms
コード長 1,307 bytes
コンパイル時間 1,749 ms
コンパイル使用メモリ 176,388 KB
実行使用メモリ 317,824 KB
最終ジャッジ日時 2024-06-26 22:41:05
合計ジャッジ時間 14,927 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
14,464 KB
testcase_01 AC 28 ms
14,464 KB
testcase_02 AC 28 ms
14,464 KB
testcase_03 AC 28 ms
14,464 KB
testcase_04 AC 7 ms
6,784 KB
testcase_05 AC 7 ms
6,656 KB
testcase_06 AC 32 ms
16,000 KB
testcase_07 AC 33 ms
16,128 KB
testcase_08 AC 63 ms
28,544 KB
testcase_09 AC 63 ms
28,672 KB
testcase_10 AC 130 ms
53,828 KB
testcase_11 AC 131 ms
53,888 KB
testcase_12 AC 129 ms
53,888 KB
testcase_13 AC 205 ms
81,920 KB
testcase_14 AC 203 ms
82,048 KB
testcase_15 AC 208 ms
82,048 KB
testcase_16 AC 209 ms
82,048 KB
testcase_17 AC 422 ms
160,512 KB
testcase_18 AC 417 ms
160,512 KB
testcase_19 AC 421 ms
160,640 KB
testcase_20 AC 417 ms
160,640 KB
testcase_21 AC 416 ms
160,640 KB
testcase_22 AC 410 ms
160,640 KB
testcase_23 AC 416 ms
160,512 KB
testcase_24 AC 414 ms
160,640 KB
testcase_25 AC 420 ms
160,512 KB
testcase_26 AC 293 ms
113,408 KB
testcase_27 AC 288 ms
113,408 KB
testcase_28 AC 413 ms
160,768 KB
testcase_29 AC 409 ms
160,512 KB
testcase_30 AC 416 ms
160,512 KB
testcase_31 AC 410 ms
160,512 KB
testcase_32 AC 5 ms
6,784 KB
testcase_33 AC 16 ms
11,264 KB
testcase_34 AC 140 ms
82,048 KB
testcase_35 AC 838 ms
317,568 KB
testcase_36 AC 836 ms
317,696 KB
testcase_37 AC 839 ms
317,696 KB
testcase_38 AC 837 ms
317,696 KB
testcase_39 AC 838 ms
317,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
int dp[201][201][2001];
//dp[i][j][k]
//iを頂点とした、jをの子までを選んでkのタイムでの最大の税収
//iそれぞれでナップサックみたいな感じ
vector<vector<pair<int,int>>> M;
vector<int> tax;
void dfs(int now,int p = -1)
{
	//cout<<now<<endl;
	for(int i = 0;i<201;i++)
	{
		for(int j = 0;j <2001;j++)
		{
			dp[now][i][j] = tax[now];
		}
	}
	int I = 0;
	for(int i = 0;i<M[now].size();i++)
	{
		if(M[now][i].first!=p)
		{
			dfs(M[now][i].first,now);
			for(int j = 0;j<2001;j++)
			{
				if(j-M[now][i].second<0)
				{
					dp[now][I+1][j] = dp[now][I][j];
					continue;
				}
				for(int k = 0;j-M[now][i].second-k>=0;k++)
				{
					dp[now][I+1][j] = max(max(dp[now][I][j],
								dp[now][I+1][j]),
					dp[now][I][j-M[now][i].second-k]
					+dp[M[now][i].first][0][k]);
				}
			}
			I++;
		}
	}
	for(int i = 0;i<2001;i++)
	{
		dp[now][0][i] = dp[now][I][i];
	}
}


int main()
{
	int n;
	cin >> n;
	int m;
	cin >> m;
	tax = vector<int>(n);
	for(int i = 0;i<n;i++)
	{
		cin >> tax[i];
	}
	M = vector<vector<pair<int,int>>>(n);
	for(int i = 0;i<n-1;i++)
	{
		int x,y,z;
		cin >> x >> y >> z;
		M[x].emplace_back(y,z);
		M[y].emplace_back(x,z);
	}
	dfs(0);
	cout<<dp[0][0][m/2]<<endl;
	return 0;
}
0