結果

問題 No.417 チューリップバブル
ユーザー kotatsugamekotatsugame
提出日時 2020-02-23 16:54:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 707 ms
コンパイル使用メモリ 75,504 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-18 10:40:03
合計ジャッジ時間 4,790 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 9 ms
6,940 KB
testcase_10 AC 9 ms
6,940 KB
testcase_11 AC 40 ms
6,940 KB
testcase_12 AC 39 ms
6,940 KB
testcase_13 AC 16 ms
6,940 KB
testcase_14 AC 64 ms
6,940 KB
testcase_15 AC 6 ms
6,944 KB
testcase_16 AC 6 ms
6,940 KB
testcase_17 AC 33 ms
6,944 KB
testcase_18 AC 34 ms
6,940 KB
testcase_19 AC 35 ms
6,944 KB
testcase_20 AC 130 ms
6,940 KB
testcase_21 AC 129 ms
6,944 KB
testcase_22 AC 131 ms
6,944 KB
testcase_23 AC 131 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 131 ms
6,940 KB
testcase_26 AC 13 ms
6,944 KB
testcase_27 AC 91 ms
6,940 KB
testcase_28 AC 130 ms
6,944 KB
testcase_29 AC 132 ms
6,940 KB
testcase_30 AC 134 ms
6,940 KB
testcase_31 AC 130 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 5 ms
6,944 KB
testcase_34 AC 27 ms
6,944 KB
testcase_35 AC 276 ms
6,944 KB
testcase_36 AC 266 ms
6,940 KB
testcase_37 AC 269 ms
6,944 KB
testcase_38 AC 273 ms
6,940 KB
testcase_39 AC 269 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:26:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   26 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int N,M;
int U[200];
vector<pair<int,int> >G[200];
int dp[200][2001];
void dfs(int u,int p)
{
	dp[u][0]=U[u];
	for(pair<int,int>q:G[u])
	{
		int v=q.first,cost=q.second;
		if(v==p)continue;
		dfs(v,u);
		for(int i=M;i>=2*cost;i--)
		{
			for(int j=0;j<=i-2*cost;j++)
			{
				dp[u][i]=max(dp[u][i],dp[u][j]+dp[v][i-2*cost-j]);
			}
		}
	}
}
main()
{
	cin>>N>>M;
	for(int i=0;i<N;i++)cin>>U[i];
	for(int i=1;i<N;i++)
	{
		int u,v,c;cin>>u>>v>>c;
		G[u].push_back(make_pair(v,c));
		G[v].push_back(make_pair(u,c));
	}
	dfs(0,-1);
	int ans=0;
	for(int i=0;i<=M;i++)ans=max(ans,dp[0][i]);
	cout<<ans<<endl;
}
0