結果
問題 | No.417 チューリップバブル |
ユーザー |
![]() |
提出日時 | 2018-11-02 05:22:54 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 314 ms / 2,000 ms |
コード長 | 3,384 bytes |
コンパイル時間 | 2,235 ms |
コンパイル使用メモリ | 90,328 KB |
実行使用メモリ | 8,048 KB |
最終ジャッジ日時 | 2024-11-20 12:01:22 |
合計ジャッジ時間 | 6,327 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 40 |
ソースコード
//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; }