結果

問題 No.1780 [Cherry Anniversary] 真冬に咲く26の櫻の木
ユーザー koba-e964koba-e964
提出日時 2021-12-09 21:20:18
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 3,798 bytes
コンパイル時間 15,244 ms
コンパイル使用メモリ 379,192 KB
実行使用メモリ 29,416 KB
最終ジャッジ日時 2024-07-17 14:13:17
合計ジャッジ時間 19,118 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,248 KB
testcase_01 AC 10 ms
5,248 KB
testcase_02 AC 20 ms
5,376 KB
testcase_03 AC 35 ms
5,376 KB
testcase_04 AC 24 ms
5,376 KB
testcase_05 AC 21 ms
5,376 KB
testcase_06 AC 22 ms
5,376 KB
testcase_07 AC 23 ms
5,376 KB
testcase_08 AC 23 ms
5,376 KB
testcase_09 AC 23 ms
5,376 KB
testcase_10 AC 23 ms
5,376 KB
testcase_11 AC 22 ms
5,376 KB
testcase_12 AC 22 ms
5,376 KB
testcase_13 AC 21 ms
5,376 KB
testcase_14 AC 102 ms
6,144 KB
testcase_15 AC 187 ms
22,144 KB
testcase_16 AC 184 ms
21,856 KB
testcase_17 AC 94 ms
5,376 KB
testcase_18 AC 144 ms
14,208 KB
testcase_19 AC 99 ms
5,504 KB
testcase_20 AC 155 ms
16,512 KB
testcase_21 AC 217 ms
27,648 KB
testcase_22 AC 220 ms
28,160 KB
testcase_23 AC 114 ms
7,808 KB
testcase_24 AC 229 ms
29,416 KB
testcase_25 AC 109 ms
7,168 KB
testcase_26 AC 99 ms
5,888 KB
testcase_27 AC 146 ms
14,320 KB
testcase_28 AC 93 ms
5,376 KB
testcase_29 AC 89 ms
5,376 KB
testcase_30 AC 215 ms
26,688 KB
testcase_31 AC 84 ms
5,376 KB
testcase_32 AC 84 ms
5,376 KB
testcase_33 AC 138 ms
12,544 KB
testcase_34 AC 6 ms
5,376 KB
testcase_35 AC 78 ms
5,376 KB
testcase_36 AC 6 ms
5,376 KB
testcase_37 AC 78 ms
5,376 KB
testcase_38 AC 79 ms
5,376 KB
testcase_39 AC 78 ms
5,376 KB
testcase_40 AC 79 ms
5,376 KB
testcase_41 AC 79 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp::*;
// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes.by_ref().map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr,) => {};
    ($next:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($next, $t);
        input_inner!{$next $($r)*}
    };
}

macro_rules! read_value {
    ($next:expr, ( $($t:tt),* )) => { ($(read_value!($next, $t)),*) };
    ($next:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    };
    ($next:expr, chars) => {
        read_value!($next, String).chars().collect::<Vec<char>>()
    };
    ($next:expr, usize1) => (read_value!($next, usize) - 1);
    ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error"));
}

const INF: i64 = 1 << 55;

fn squmul(a: &[Vec<i64>], b: &[Vec<i64>]) -> Vec<Vec<i64>> {
    let n = a.len();
    let mut ret = vec![vec![-INF; n]; n];
    for i in 0..n {
        for j in 0..n {
            for k in 0..n {
                ret[i][k] = max(ret[i][k], a[i][j] + b[j][k]);
            }
        }
    }
    ret
}

fn squpow(a: &[Vec<i64>], mut e: i64) -> Vec<Vec<i64>> {
    let n = a.len();
    let mut sum = vec![vec![-INF; n]; n];
    for i in 0..n { sum[i][i] = 0; }
    let mut cur = a.to_vec();
    while e > 0 {
        if e % 2 == 1 {
            sum = squmul(&sum, &cur);
        }
        cur = squmul(&cur, &cur);
        e /= 2;
    }
    sum
}

// https://yukicoder.me/problems/no/1780 (3)
// 16 種類の色全てに対して、その色に揃えられるかを確認すれば良い。
// 26 本の桜の木それぞれに対して、16 頂点の重み付き有向グラフ・その上の始点・何回まで辺を辿れるかという情報が与えられる。つまり遷移行列 A に対して max(I, A, A^2, …, A^k) が求められれば良い (ただしこの累乗は (max, +) 半環における乗算による累乗である)。(max, +) が半環をなすことから、(A I; 0 I) の k+1 乗の (16,16)-(31,31) 成分がこの情報を与える。計算量は (30N + 32^3 * log K[i] + 26 * 16)。
// -> 有向グラフではなく無向グラフだった。本質は一緒。
// -> 1 本につき得られるエネルギーの絶対値の最大値が 10^14 なのだから、全体では 2.6 * 10^15 程度。よって、INF はそれより大きくしなければならない。
// Tags: matrix-multiplication, tropical-semiring
fn main() {
    input! {
        c: [usize1; 26],
        k: [i64; 26],
        n: usize,
        sabe: [(chars, usize1, usize1, i64); n],
    }
    let mut g = vec![vec![vec![-INF; 32]; 32]; 26];
    for (s, a, b, e) in sabe {
        for &c in &s {
            let idx = (c as u8 - b'A') as usize;
            g[idx][a][b] = max(g[idx][a][b], e);
            g[idx][b][a] = max(g[idx][b][a], e);
        }
    }
    let mut ans = vec![vec![]; 26];
    for i in 0..26 {
        for j in 0..16 {
            g[i][j + 16][j] = 0;
            g[i][j + 16][j + 16] = 0;
        }
        let pw = squpow(&g[i], k[i] + 1);
        ans[i] = pw[c[i] + 16].clone();
    }
    let mut ma = -INF;
    for i in 0..16 {
        let mut tot = 0;
        for j in 0..26 {
            tot += ans[j][i];
        }
        ma = max(ma, tot);
    }
    if ma > -INF / 2 {
        println!("{}", ma);
    } else {
        println!("Impossible");
    }
}
0