結果

問題 No.417 チューリップバブル
ユーザー simansiman
提出日時 2021-09-02 14:56:42
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 1,235 bytes
コンパイル時間 3,588 ms
コンパイル使用メモリ 142,652 KB
実行使用メモリ 6,980 KB
最終ジャッジ日時 2024-05-07 08:57:17
合計ジャッジ時間 2,577 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,912 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 4 ms
6,968 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 3 ms
6,952 KB
testcase_16 AC 3 ms
6,948 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 4 ms
6,976 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 4 ms
6,940 KB
testcase_26 AC 3 ms
6,944 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 4 ms
6,944 KB
testcase_29 AC 4 ms
6,968 KB
testcase_30 AC 5 ms
6,940 KB
testcase_31 AC 3 ms
6,940 KB
testcase_32 AC 3 ms
6,980 KB
testcase_33 AC 3 ms
6,940 KB
testcase_34 AC 4 ms
6,944 KB
testcase_35 AC 4 ms
6,940 KB
testcase_36 AC 4 ms
6,972 KB
testcase_37 AC 5 ms
6,944 KB
testcase_38 AC 5 ms
6,944 KB
testcase_39 AC 4 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <limits.h>
#include <map>
#include <queue>
#include <set>
#include <string.h>
#include <vector>

using namespace std;
typedef long long ll;

int N, M;
ll U[201];
ll dp[201][2010];
vector<int> E[201];
ll C[201][201];

void dfs(int u, int p = -1) {
  for (int v : E[u]) {
    if (v == p) continue;

    for (int i = 0; i + 2 * C[u][v] <= M; ++i) {
      if (dp[u][i] == -1) continue;

      int t = i + C[u][v];
      dp[v][t] = max(dp[v][t], dp[u][i] + U[v]);
    }

    dfs(v, u);
  }

  if (p != -1) {
    for (int i = 0; i + C[u][p] <= M; ++i) {
      if (dp[u][i] == -1) continue;

      int t = i + C[u][p];
      dp[p][t] = max(dp[p][t], dp[u][i]);
    }
  }
}

int main() {
  memset(C, 0, sizeof(C));
  memset(dp, -1, sizeof(dp));
  cin >> N >> M;

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

  int a, b;
  ll c;
  for (int i = 0; i < N - 1; ++i) {
    cin >> a >> b >> c;

    E[a].push_back(b);
    E[b].push_back(a);
    C[a][b] = c;
    C[b][a] = c;
  }

  dp[0][0] = 0;
  dfs(0);

  ll ans = 0;

  for (int i = 0; i <= M; ++i) {
    ans = max(ans, dp[0][i]);
  }

  cout << ans + U[0] << endl;

  return 0;
}
0