結果

問題 No.417 チューリップバブル
ユーザー Yukino DX.Yukino DX.
提出日時 2023-11-18 12:07:57
言語 Rust
(1.77.0 + proconio)
結果
TLE  
実行時間 -
コード長 1,605 bytes
コンパイル時間 14,115 ms
コンパイル使用メモリ 377,880 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 05:44:34
合計ジャッジ時間 41,819 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 24 ms
5,376 KB
testcase_09 AC 61 ms
5,376 KB
testcase_10 AC 80 ms
5,376 KB
testcase_11 AC 375 ms
5,376 KB
testcase_12 AC 363 ms
5,376 KB
testcase_13 AC 128 ms
5,376 KB
testcase_14 AC 605 ms
5,376 KB
testcase_15 AC 39 ms
5,376 KB
testcase_16 AC 39 ms
5,376 KB
testcase_17 AC 321 ms
5,376 KB
testcase_18 AC 324 ms
5,376 KB
testcase_19 AC 316 ms
5,376 KB
testcase_20 AC 1,277 ms
5,376 KB
testcase_21 AC 1,262 ms
5,376 KB
testcase_22 AC 1,269 ms
5,376 KB
testcase_23 AC 1,274 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1,292 ms
5,376 KB
testcase_26 AC 110 ms
5,376 KB
testcase_27 AC 900 ms
5,376 KB
testcase_28 AC 1,290 ms
5,376 KB
testcase_29 AC 1,284 ms
5,376 KB
testcase_30 AC 1,286 ms
5,376 KB
testcase_31 AC 1,288 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 31 ms
5,376 KB
testcase_34 AC 255 ms
5,376 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(unused_imports)]
// use itertools::Itertools;
// use proconio::input;
// use proconio::marker::*;
use std::cmp::Reverse;
use std::collections::*;

fn main() {
    let nm = read_ints();
    let n = nm[0];
    let m = nm[1];
    let mut u = vec![0; n];
    for i in 0..n {
        let ui = read_int();
        u[i] = ui;
    }

    let mut g = vec![vec![]; n];
    for _ in 0..n - 1 {
        let abc = read_ints();
        g[abc[0]].push((abc[1], abc[2]));
        g[abc[1]].push((abc[0], abc[2]));
    }

    let mut dp = vec![vec![0; m + 1]; n];

    f(&g, &u, m, 0, n, &mut dp);
    let ans = dp[0][m];
    println!("{}", ans);
}

fn f(
    g: &Vec<Vec<(usize, usize)>>,
    u: &Vec<usize>,
    m: usize,
    crr: usize,
    prv: usize,
    dp: &mut Vec<Vec<usize>>,
) {
    for &(nxt, _) in g[crr].iter() {
        if prv == nxt {
            continue;
        }

        f(g, u, m, nxt, crr, dp);
    }

    for &(nxt, cost) in g[crr].iter() {
        for s in (0..=m).rev() {
            for t in (0..=m).take_while(|&t| s >= t + 2 * cost) {
                dp[crr][s] = dp[crr][s].max(dp[nxt][t] + dp[crr][s - (t + 2 * cost)])
            }
        }
    }

    for t in 0..=m {
        dp[crr][t] += u[crr];
    }
}

use std::io;
fn read_ints() -> Vec<usize> {
    let mut buf = String::new();
    io::stdin().read_line(&mut buf).unwrap();
    buf.trim()
        .split_whitespace()
        .map(|s| s.parse().unwrap())
        .collect()
}

fn read_int() -> usize {
    let mut buffer = String::new();
    io::stdin().read_line(&mut buffer).unwrap();
    buffer.trim().parse().unwrap()
}
0