結果
問題 | No.1780 [Cherry Anniversary] 真冬に咲く26の櫻の木 |
ユーザー | koba-e964 |
提出日時 | 2021-12-09 21:04:26 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,666 bytes |
コンパイル時間 | 18,752 ms |
コンパイル使用メモリ | 381,568 KB |
実行使用メモリ | 29,440 KB |
最終ジャッジ日時 | 2024-07-17 13:56:42 |
合計ジャッジ時間 | 18,753 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
ソースコード
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 << 50; 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 } 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); } } 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]].clone(); } let mut mi = INF; for i in 0..16 { let mut tot = 0; for j in 0..26 { tot += ans[j][i]; } mi = min(mi, tot); } println!("{}", mi); }