結果

問題 No.417 チューリップバブル
ユーザー bonKotsubonKotsu
提出日時 2022-07-17 01:14:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 936 ms / 2,000 ms
コード長 1,182 bytes
コンパイル時間 2,252 ms
コンパイル使用メモリ 207,552 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-29 02:13:25
合計ジャッジ時間 13,731 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 14 ms
5,376 KB
testcase_09 AC 29 ms
5,376 KB
testcase_10 AC 40 ms
5,376 KB
testcase_11 AC 146 ms
5,376 KB
testcase_12 AC 146 ms
5,376 KB
testcase_13 AC 61 ms
5,376 KB
testcase_14 AC 228 ms
5,376 KB
testcase_15 AC 18 ms
5,376 KB
testcase_16 AC 17 ms
5,376 KB
testcase_17 AC 115 ms
5,376 KB
testcase_18 AC 112 ms
5,376 KB
testcase_19 AC 118 ms
5,376 KB
testcase_20 AC 457 ms
5,376 KB
testcase_21 AC 451 ms
5,376 KB
testcase_22 AC 441 ms
5,376 KB
testcase_23 AC 460 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 465 ms
5,376 KB
testcase_26 AC 44 ms
5,376 KB
testcase_27 AC 324 ms
5,376 KB
testcase_28 AC 456 ms
5,376 KB
testcase_29 AC 449 ms
5,376 KB
testcase_30 AC 468 ms
5,376 KB
testcase_31 AC 456 ms
5,376 KB
testcase_32 AC 8 ms
5,376 KB
testcase_33 AC 21 ms
5,376 KB
testcase_34 AC 223 ms
5,376 KB
testcase_35 AC 915 ms
5,376 KB
testcase_36 AC 919 ms
5,376 KB
testcase_37 AC 903 ms
5,376 KB
testcase_38 AC 890 ms
5,376 KB
testcase_39 AC 936 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>
#define LP pair<ll, ll>
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define all(s) s.begin(), s.end()
#define rall(s) s.rbegin(), s.rend()
template<class T>
void chmax(T& a, T b) { a = max(a, b); };
template<class T>
void chmin(T& a, T b) { a = min(a, b); };
int n, m;
vector<int> u(210);
vector dp(210, vector<int>(2005));

struct Edge {
  int to, c;
  Edge(int to, int c) : to(to), c(c) {}
};

vector<Edge> g[210];

void dfs(int v, int p = -1) {
  dp[v][0] = u[v];
  for (auto e : g[v]) {
    int nv = e.to, c = e.c;
    if (nv == p) continue;
    dfs(nv, v);
    for (int i = m; i >= 0; i--) { 
      for (int j = m; j >= 0; j--) {
        if (i+j+2*c <= m) {
          chmax(dp[v][i+j+2*c],dp[v][i]+dp[nv][j]);
        }
      }
    }
  }
}

int main() {
  cin >> n >> m;
  rep(i,n) cin >> u[i];
  rep(i,n-1) {
    int a, b, c;
    cin >> a >> b >> c;
    g[a].pb(Edge(b,c));
    g[b].pb(Edge(a,c));
  }
  dfs(0);
  int ans = 0;
  rep(i,m+1) chmax(ans, dp[0][i]);
  cout << ans << endl;

  return 0;
}
0