結果

問題 No.417 チューリップバブル
ユーザー youthfuldays072youthfuldays072
提出日時 2018-11-02 05:22:54
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 3,384 bytes
コンパイル時間 964 ms
コンパイル使用メモリ 93,172 KB
実行使用メモリ 7,792 KB
最終ジャッジ日時 2024-04-30 15:50:34
合計ジャッジ時間 5,408 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 9 ms
6,944 KB
testcase_10 AC 12 ms
6,940 KB
testcase_11 AC 48 ms
6,940 KB
testcase_12 AC 47 ms
6,940 KB
testcase_13 AC 18 ms
6,940 KB
testcase_14 AC 74 ms
6,940 KB
testcase_15 AC 7 ms
6,940 KB
testcase_16 AC 6 ms
6,940 KB
testcase_17 AC 40 ms
6,940 KB
testcase_18 AC 41 ms
6,944 KB
testcase_19 AC 41 ms
6,944 KB
testcase_20 AC 154 ms
6,948 KB
testcase_21 AC 153 ms
6,940 KB
testcase_22 AC 153 ms
6,940 KB
testcase_23 AC 152 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 154 ms
6,940 KB
testcase_26 AC 15 ms
6,944 KB
testcase_27 AC 108 ms
6,944 KB
testcase_28 AC 154 ms
6,944 KB
testcase_29 AC 151 ms
6,944 KB
testcase_30 AC 152 ms
6,940 KB
testcase_31 AC 152 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 5 ms
6,944 KB
testcase_34 AC 32 ms
6,940 KB
testcase_35 AC 312 ms
7,440 KB
testcase_36 AC 311 ms
7,660 KB
testcase_37 AC 314 ms
7,792 KB
testcase_38 AC 313 ms
7,664 KB
testcase_39 AC 316 ms
7,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//include
//------------------------------------------
#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <queue>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <string>
#include <cstring>
#include <ctime>


using namespace std;

//conversion
//------------------------------------------
inline int toInt(string s) { int v; istringstream sin(s); sin >> v; return v; }
template<class T> inline string toString(T x) { ostringstream sout; sout << x; return sout.str(); }

//math
//-------------------------------------------
template<class T> inline T sqr(T x) { return x * x; }

//typedef
//------------------------------------------
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<string> VS;
typedef pair<int, int> PII;
typedef long long LL;

//container util
//------------------------------------------
#define ALL(a)  (a).begin(),(a).end()
#define RALL(a) (a).rbegin(), (a).rend()
#define PB push_back
#define MP make_pair
#define SZ(a) int((a).size())
#define EACH(i,c) for(typeof((c).begin()) i=(c).begin(); i!=(c).end(); ++i)
#define EXIST(s,e) ((s).find(e)!=(s).end())
#define EXISTch(s,c) ((((s).find_first_of(c)) != std::string::npos)? 1 : 0)//cがあれば1 if(1)
#define SORT(c) sort((c).begin(),(c).end())

//repetition
//------------------------------------------
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define rep(i,n)  FOR(i,0,n)
#define loop(n) FOR(i,0,n)
#define rrep(i,a,b) for(int i=(a);i>=(b);--i)
//constant
//--------------------------------------------
const double EPS = 1e-10;
const double PI = acos(-1.0);
const int INF = (int)1000000007;
const LL MOD = (LL)1000000007;//10^9+7
const LL INF2 = (LL)100000000000000000;//10^18

int N, M;
int U[3000];
LL dp[202][3000];
vector<pair<int, int>> E[202];

//dp[頂点v以下の部分木][経過時間tまでに]回収できる税の最大値
//遷移前 dp[子の頂点以下の部分木で][j秒までに]回収できる税の最大値を使って
//遷移後 親から子に渡って、回収して親まで戻ってくる。

//Mが小さいので時間の情報をすべてもてるので成り立つdp

void dfs(int cur, int pre) {
	
	//葉は0~Mまで移動せずに拾うだけ
	for (int i = 0; i < M + 1; i++) {
		dp[cur][i] = U[cur];
	}

	//逆走防止で葉まで降りていく。
	for (pair<int, int> e : E[cur])if (e.first != pre) {
		int tar = e.first;
		int cost = e.second;
		dfs(tar, cur);


		//テク、Mから減らしていってjの限界をiまでにしておくと
		//範囲外参照を気にしなくて済む。

		//0からMまでのすべての時間に対して
		for (int i = M; i >=0; i--) {
			for (int j = 0; j + 2*cost <= i; j++) {
				//親から子に渡り戻ってきた時の時間と税の最大値を記録していく
				dp[cur][i] = max(dp[cur][i], dp[cur][i - (j + 2*cost)] + dp[tar][j]);
			}
		}
	}
}

int main() {

	cin >> N >> M;

	for (int i = 0; i < N; i++)cin >> U[i];

	for (int i = 0; i < N - 1; i++) {
		int x, y, r; cin >> x >> y >> r;

		E[x].push_back({ y,r });
		E[y].push_back({ x,r });
	}

	dfs(0, -1);

	LL mx = -1;
	for (LL i : dp[0]) {
		mx = max(mx, i);
	}

	cout << mx << endl;

	return 0;
}
0