結果

問題 No.417 チューリップバブル
ユーザー chocopuuchocopuu
提出日時 2019-05-06 08:21:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 749 ms / 2,000 ms
コード長 2,034 bytes
コンパイル時間 1,658 ms
コンパイル使用メモリ 172,232 KB
実行使用メモリ 10,812 KB
最終ジャッジ日時 2024-06-27 01:18:09
合計ジャッジ時間 11,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,636 KB
testcase_01 AC 5 ms
10,612 KB
testcase_02 AC 4 ms
10,588 KB
testcase_03 AC 4 ms
10,812 KB
testcase_04 AC 4 ms
10,724 KB
testcase_05 AC 4 ms
10,572 KB
testcase_06 AC 5 ms
10,676 KB
testcase_07 AC 4 ms
10,624 KB
testcase_08 AC 13 ms
10,644 KB
testcase_09 AC 21 ms
10,536 KB
testcase_10 AC 28 ms
10,644 KB
testcase_11 AC 115 ms
10,656 KB
testcase_12 AC 113 ms
10,620 KB
testcase_13 AC 44 ms
10,668 KB
testcase_14 AC 183 ms
10,700 KB
testcase_15 AC 16 ms
10,656 KB
testcase_16 AC 16 ms
10,548 KB
testcase_17 AC 97 ms
10,712 KB
testcase_18 AC 97 ms
10,676 KB
testcase_19 AC 96 ms
10,572 KB
testcase_20 AC 375 ms
10,640 KB
testcase_21 AC 371 ms
10,536 KB
testcase_22 AC 369 ms
10,628 KB
testcase_23 AC 371 ms
10,812 KB
testcase_24 AC 5 ms
10,688 KB
testcase_25 AC 370 ms
10,540 KB
testcase_26 AC 36 ms
10,716 KB
testcase_27 AC 254 ms
10,684 KB
testcase_28 AC 366 ms
10,672 KB
testcase_29 AC 361 ms
10,684 KB
testcase_30 AC 368 ms
10,732 KB
testcase_31 AC 366 ms
10,676 KB
testcase_32 AC 5 ms
10,504 KB
testcase_33 AC 13 ms
10,632 KB
testcase_34 AC 77 ms
10,640 KB
testcase_35 AC 749 ms
10,672 KB
testcase_36 AC 742 ms
10,688 KB
testcase_37 AC 745 ms
10,528 KB
testcase_38 AC 749 ms
10,724 KB
testcase_39 AC 748 ms
10,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define fi first
#define se second
#define pb push_back
#define rep(i, s, n) for (int i = s; i < n; i++)
#define rrep(i, s, n) for (int i = (n)-1; i >= (s); i--)
#define all(a) a.begin(),a.end()
typedef pair<int,int>pint;
typedef vector<int>vint;
typedef vector<pint>vpint;
const long long MOD = 1000000007, INF = 1e18;
template<class T>inline bool chmax(T& a,T b){if(a<b){a=b;return true;}return false;}
template<class T>inline bool chmin(T& a,T b){if(a>b){a=b;return true;}return false;}
string get_str(string s) {
	s+=',';
	string ret="";
	for(int i=0; i<s.size(); i++) {
		if(s[i]==',') ret+="=%ld, ";
		else ret+=s[i];
	}
	return ret;
}
#define dump(...) printf(get_str(#__VA_ARGS__).c_str(),__VA_ARGS__);cout<<endl
 
#define endl '\n'
#define IOS()                     \
	ios_base::sync_with_stdio(0); \
	cin.tie(0)
 
//******************************************************************************
template<typename T>vector<T>
make_v(size_t a){return vector<T>(a);}
template<typename T,typename... Ts>
auto make_v(size_t a,Ts... ts){
	return vector<decltype(make_v<T>(ts...))>(a,make_v<T>(ts...));
}
 
template<typename T,typename V>
typename enable_if<is_class<T>::value==0>::type
fill_v(T &t,const V &v){t=v;}
 
template<typename T,typename V>
typename enable_if<is_class<T>::value!=0>::type
fill_v(T &t,const V &v){
	for(auto &e:t) fill_v(e,v);
}

int N,M;
int u[202];
vpint g[2020];
int dp[303][3030];

void dfs(int now,int par){
	rep(i,0,M+1)dp[now][i] = u[now];
	for(auto e:g[now]){
		if(e.fi==par)continue;
		dfs(e.fi,now);
		rrep(i,0,M+1){
			rep(j,0,M+1){
				if(i<e.se*2+j)break;
				chmax(dp[now][i],dp[now][i-e.se*2-j]+dp[e.fi][j]);
			}
		}
	}
}

signed main()
{
	//IOS();
	cin>>N>>M;
	for(int i = 0;i < N;i++){
		cin>>u[i];
	}
	for(int i = 0;i < N-1;i++){
		int a,b,c;
		cin>>a>>b>>c;
		g[a].push_back({b,c});
		g[b].push_back({a,c});
	}
	memset(dp,-1,sizeof(dp));
	dfs(0,-1);
	int ans = 0;
	rep(i,0,M+1)chmax(ans,dp[0][i]);
	cout<<ans<<endl;
}
0