結果
問題 | No.2477 Drifting |
ユーザー | koba-e964 |
提出日時 | 2023-09-18 07:12:05 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 1,735 ms / 2,000 ms |
コード長 | 4,724 bytes |
コンパイル時間 | 17,984 ms |
コンパイル使用メモリ | 377,896 KB |
実行使用メモリ | 182,004 KB |
最終ジャッジ日時 | 2024-07-04 23:23:21 |
合計ジャッジ時間 | 26,941 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 324 ms
105,216 KB |
testcase_01 | AC | 219 ms
83,024 KB |
testcase_02 | AC | 324 ms
105,088 KB |
testcase_03 | AC | 95 ms
19,200 KB |
testcase_04 | AC | 52 ms
13,568 KB |
testcase_05 | AC | 66 ms
9,804 KB |
testcase_06 | AC | 1,723 ms
181,820 KB |
testcase_07 | AC | 1,735 ms
182,004 KB |
testcase_08 | AC | 1,224 ms
149,248 KB |
testcase_09 | AC | 788 ms
109,312 KB |
testcase_10 | AC | 710 ms
107,136 KB |
testcase_11 | AC | 731 ms
101,376 KB |
testcase_12 | AC | 271 ms
91,068 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 699 ms
103,380 KB |
コンパイルメッセージ
warning: unused import: `BufWriter` --> src/main.rs:5:22 | 5 | use std::io::{Write, BufWriter}; | ^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `Write` --> src/main.rs:5:15 | 5 | use std::io::{Write, BufWriter}; | ^^^^^ warning: unused variable: `w` --> src/main.rs:127:17 | 127 | let (_, w) = g[0][i]; | ^ help: if this is intentional, prefix it with an underscore: `_w` | = note: `#[warn(unused_variables)]` on by default
ソースコード
#[allow(unused_imports)] use std::cmp::*; #[allow(unused_imports)] use std::collections::*; use std::io::{Write, BufWriter}; // 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:tt ]) => {{ let len = read_value!($next, usize); read_value!($next, [$t; len]) }}; ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error")); } trait Change { fn chmax(&mut self, x: Self); fn chmin(&mut self, x: Self); } impl<T: PartialOrd> Change for T { fn chmax(&mut self, x: T) { if *self < x { *self = x; } } fn chmin(&mut self, x: T) { if *self > x { *self = x; } } } fn divide_into_segment_ranges<F: FnMut(usize)>(n: usize, rng: std::ops::Range<usize>, mut f: F) { assert!(n.is_power_of_two()); let (mut a, mut b) = (rng.start, rng.end); a += n - 1; b += n - 1; while a < b { if (a & 1) == 0 { f(a); } if (b & 1) == 0 { f(b - 1); } a = a / 2; b = (b - 1) / 2; } } // 範囲に辺を張りたいので、重み 0 の辺を使って ->->-> という流れを作ってそれの上に辺を張ることにする。 // -> それだと (a, b) に対して複数の c がある場合にうまくいかないので、代わりにセグメント木を使う。 fn main() { input! { n: usize, m: usize, uvw: [(usize1, usize1, i64); m], k: usize, abc: [(usize1, usize1, usize1); k], } let mut g = vec![vec![]; n]; for &(u, v, w) in &uvw { g[u].push((v, w)); } let mut offset = vec![0; n + 1]; for i in 0..n { g[i].sort(); offset[i + 1] = offset[i] + g[i].len(); } let mut map = vec![HashMap::new(); n]; for &(a, b, c) in &abc { if let Ok(idx) = g[b].binary_search_by_key(&c, |x| x.0) { map[a].entry(b).or_insert(vec![]).push(idx); } } for i in 0..n { for e in map[i].values_mut() { e.sort(); } } let m2 = m.next_power_of_two(); let mut sup = vec![vec![]; 2 * m2]; // segment tree for i in 0..m2 - 1 { sup[i].push((2 * i + 1, 0)); sup[i].push((2 * i + 2, 0)); } for a in 0..n { for i in 0..g[a].len() { let (b, w) = g[a][i]; let idx = offset[a] + i; if let Some(v) = map[a].get(&b) { if !v.is_empty() { for i in 0..v.len() - 1 { divide_into_segment_ranges(m2, offset[b] + v[i] + 1..offset[b] + v[i + 1], |x| sup[m2 + idx - 1].push((x, w))); } divide_into_segment_ranges(m2, offset[b]..offset[b] + v[0], |x| sup[m2 + idx - 1].push((x, w))); divide_into_segment_ranges(m2, offset[b] + v[v.len() - 1] + 1..offset[b + 1], |x| sup[m2 + idx - 1].push((x, w))); } } else { if b == n - 1 { sup[m2 - 1 + idx].push((2 * m2 - 1, w)); } else { divide_into_segment_ranges(m2, offset[b]..offset[b + 1], |x| sup[m2 + idx - 1].push((x, w))); } } } } let mut que = BinaryHeap::new(); for i in 0..g[0].len() { let (_, w) = g[0][i]; que.push((Reverse(0), m2 - 1 + i)); } const INF: i64 = 1 << 50; let mut dist = vec![INF; 2 * m2]; while let Some((Reverse(d), v)) = que.pop() { if dist[v] <= d { continue; } dist[v] = d; for &(w, c) in &sup[v] { que.push((Reverse(d + c), w)); } } let ans = dist[2 * m2 - 1]; println!("{}", if ans >= INF { -1 } else { ans }); }