結果

問題 No.417 チューリップバブル
ユーザー ttkkggwwttkkggww
提出日時 2020-04-01 15:54:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,306 bytes
コンパイル時間 1,621 ms
コンパイル使用メモリ 175,196 KB
実行使用メモリ 633,968 KB
最終ジャッジ日時 2024-06-26 22:35:57
合計ジャッジ時間 11,646 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
25,668 KB
testcase_01 AC 20 ms
25,736 KB
testcase_02 AC 20 ms
27,216 KB
testcase_03 AC 20 ms
27,296 KB
testcase_04 AC 6 ms
10,108 KB
testcase_05 AC 6 ms
10,284 KB
testcase_06 AC 23 ms
28,796 KB
testcase_07 AC 23 ms
28,752 KB
testcase_08 AC 46 ms
55,664 KB
testcase_09 AC 45 ms
54,560 KB
testcase_10 AC 90 ms
105,752 KB
testcase_11 AC 89 ms
104,948 KB
testcase_12 AC 88 ms
104,852 KB
testcase_13 AC 141 ms
161,372 KB
testcase_14 AC 141 ms
161,092 KB
testcase_15 AC 142 ms
161,948 KB
testcase_16 AC 143 ms
161,296 KB
testcase_17 AC 292 ms
317,884 KB
testcase_18 AC 287 ms
317,876 KB
testcase_19 AC 289 ms
317,688 KB
testcase_20 AC 285 ms
317,692 KB
testcase_21 AC 285 ms
317,852 KB
testcase_22 AC 286 ms
318,192 KB
testcase_23 AC 285 ms
317,756 KB
testcase_24 AC 284 ms
318,628 KB
testcase_25 AC 286 ms
317,688 KB
testcase_26 AC 200 ms
224,096 KB
testcase_27 AC 197 ms
223,508 KB
testcase_28 AC 283 ms
317,736 KB
testcase_29 AC 289 ms
317,896 KB
testcase_30 AC 283 ms
319,060 KB
testcase_31 AC 282 ms
318,984 KB
testcase_32 AC 4 ms
9,860 KB
testcase_33 AC 13 ms
20,328 KB
testcase_34 AC 107 ms
161,216 KB
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
ll 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