結果

問題 No.2712 Play more!
ユーザー Yukino DX.Yukino DX.
提出日時 2024-06-20 22:00:19
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,387 bytes
コンパイル時間 15,137 ms
コンパイル使用メモリ 405,060 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-20 22:00:37
合計ジャッジ時間 16,658 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 37 ms
6,944 KB
testcase_08 AC 36 ms
6,940 KB
testcase_09 AC 37 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 11 ms
6,944 KB
testcase_12 AC 72 ms
6,944 KB
testcase_13 AC 17 ms
6,940 KB
testcase_14 AC 55 ms
6,940 KB
testcase_15 AC 104 ms
6,944 KB
testcase_16 AC 6 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 5 ms
6,940 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 27 ms
6,940 KB
testcase_21 AC 10 ms
6,940 KB
testcase_22 AC 39 ms
6,944 KB
testcase_23 AC 4 ms
6,944 KB
testcase_24 AC 8 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 9 ms
6,940 KB
testcase_27 AC 12 ms
6,940 KB
testcase_28 AC 16 ms
6,940 KB
testcase_29 AC 13 ms
6,940 KB
testcase_30 AC 88 ms
6,940 KB
testcase_31 AC 52 ms
6,940 KB
testcase_32 AC 42 ms
6,940 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 1 ms
6,940 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::{input, marker::Usize1};

fn main() {
    input! {
        n:usize,
        m:usize,
        a:[i64;n],
        abc:[(Usize1,Usize1,i64);m],
    }

    let mut g = vec![vec![]; n];
    let mut rg = vec![vec![]; n];
    for &(u, v, w) in abc.iter() {
        if u != n - 1 && v != n - 1 {
            g[u].push((v, w - a[u]));
        }
        rg[v].push(u);
    }

    let mut vis = vec![false; n];
    f(n - 1, &mut vis, &rg);

    const INF: i64 = std::i64::MAX;
    let mut dists = vec![INF; n];
    dists[0] = 0;
    for i in 1..=n {
        for j in 0..n {
            for &(k, w) in g[j].iter() {
                if !vis[j] || !vis[k] {
                    continue;
                }
                if dists[j] != INF && dists[k] > dists[j] + w {
                    dists[k] = dists[j] + w;

                    if i == n {
                        println!("inf");
                        return;
                    }
                }
            }
        }
    }

    let ans = -abc
        .iter()
        .filter(|&&(_, v, _)| v == n - 1)
        .map(|&(u, v, w)| dists[u] + w - a[u] - a[v])
        .min()
        .unwrap();

    println!("{}", ans);
}

fn f(crr: usize, vis: &mut Vec<bool>, g: &Vec<Vec<usize>>) {
    vis[crr] = true;
    for &nxt in g[crr].iter() {
        if vis[nxt] {
            continue;
        }

        f(nxt, vis, g);
    }
}
0