結果

問題 No.417 チューリップバブル
ユーザー furafura
提出日時 2020-07-12 02:37:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 403 ms / 2,000 ms
コード長 994 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 203,456 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-21 20:32:52
合計ジャッジ時間 7,749 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 11 ms
6,940 KB
testcase_10 AC 14 ms
6,944 KB
testcase_11 AC 62 ms
6,940 KB
testcase_12 AC 60 ms
6,940 KB
testcase_13 AC 23 ms
6,940 KB
testcase_14 AC 97 ms
6,940 KB
testcase_15 AC 7 ms
6,940 KB
testcase_16 AC 8 ms
6,944 KB
testcase_17 AC 52 ms
6,940 KB
testcase_18 AC 51 ms
6,940 KB
testcase_19 AC 50 ms
6,940 KB
testcase_20 AC 193 ms
6,940 KB
testcase_21 AC 197 ms
6,944 KB
testcase_22 AC 211 ms
6,940 KB
testcase_23 AC 206 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 194 ms
6,944 KB
testcase_26 AC 19 ms
6,948 KB
testcase_27 AC 136 ms
6,940 KB
testcase_28 AC 190 ms
6,944 KB
testcase_29 AC 193 ms
6,944 KB
testcase_30 AC 193 ms
6,940 KB
testcase_31 AC 190 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 7 ms
6,944 KB
testcase_34 AC 41 ms
6,944 KB
testcase_35 AC 391 ms
6,940 KB
testcase_36 AC 393 ms
6,944 KB
testcase_37 AC 402 ms
6,940 KB
testcase_38 AC 403 ms
6,944 KB
testcase_39 AC 399 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

template<class T> struct edge{
	int to;
	T wt;
	edge(int to,const T& wt):to(to),wt(wt){}
};
template<class T> using weighted_graph=vector<vector<edge<T>>>;

template<class T>
void add_undirected_edge(weighted_graph<T>& G,int u,int v,const T& wt){
	G[u].emplace_back(v,wt);
	G[v].emplace_back(u,wt);
}

int m,val[200];
weighted_graph<int> T;

vector<int> dfs(int u,int p){
	vector<int> res(m+1);
	res[0]=val[u];

	for(auto e:T[u]) if(e.to!=p) {
		int v=e.to;
		auto tmp=dfs(v,u),next=res;
		rep(w1,m+1) rep(w2,m+1) {
			if(w1+2*e.wt+w2>m) break;
			next[w1+2*e.wt+w2]=max(next[w1+2*e.wt+w2],res[w1]+tmp[w2]);
		}
		res=next;
	}
	return res;
}

int main(){
	int n; scanf("%d%d",&n,&m);
	rep(u,n) scanf("%d",&val[u]);
	T.resize(n);
	rep(i,n-1){
		int u,v,c; scanf("%d%d%d",&u,&v,&c);
		add_undirected_edge(T,u,v,c);
	}

	auto ans=dfs(0,-1);
	printf("%d\n",*max_element(ans.begin(),ans.end()));

	return 0;
}
0