結果
問題 | No.2764 Warp Drive Spacecraft |
ユーザー |
![]() |
提出日時 | 2024-05-17 21:25:04 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 399 ms / 3,000 ms |
コード長 | 6,094 bytes |
コンパイル時間 | 14,398 ms |
コンパイル使用メモリ | 388,688 KB |
実行使用メモリ | 35,708 KB |
最終ジャッジ日時 | 2024-07-17 20:23:16 |
合計ジャッジ時間 | 19,977 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 35 |
コンパイルメッセージ
warning: unused import: `std::io::Write` --> src/main.rs:1:5 | 1 | use std::io::Write; | ^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: type alias `Map` is never used --> src/main.rs:4:6 | 4 | type Map<K, V> = BTreeMap<K, V>; | ^^^ | = note: `#[warn(dead_code)]` on by default warning: type alias `Set` is never used --> src/main.rs:5:6 | 5 | type Set<T> = BTreeSet<T>; | ^^^ warning: type alias `Deque` is never used --> src/main.rs:6:6 | 6 | type Deque<T> = VecDeque<T>; | ^^^^^
ソースコード
use std::io::Write;use std::collections::*;type Map<K, V> = BTreeMap<K, V>;type Set<T> = BTreeSet<T>;type Deque<T> = VecDeque<T>;fn main() {input! {n: usize,m: usize,w: [i64; n],e: [(usize1, usize1, i64); m],}let mut g = vec![vec![]; n];for (a, b, c) in e {g[a].push((b, c));g[b].push((a, c));}let inf = std::i64::MAX / 2;let calc = |s: usize| -> Vec<i64> {let mut dp = vec![inf; n];dp[s] = 0;let mut h = BinaryHeap::new();h.push((0, s));while let Some((d, v)) = h.pop() {let d = -d;if d > dp[v] {continue;}for &(u, w) in g[v].iter() {if dp[u].chmin(d + w) {h.push((-dp[u], u));}}}dp};let a = calc(0);let b = calc(n - 1);let mut ans = a[n - 1];let mut cht = IncrementalCHT::new();for (w, b) in w.iter().zip(b.iter()) {cht.add_line(*w, *b);}for (w, a) in w.iter().zip(a.iter()) {ans.chmin(cht.find(*w) + *a);}println!("{}", ans);}// ---------- begin input macro ----------// reference: https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8#[macro_export]macro_rules! input {(source = $s:expr, $($r:tt)*) => {let mut iter = $s.split_whitespace();input_inner!{iter, $($r)*}};($($r:tt)*) => {let s = {use std::io::Read;let mut s = String::new();std::io::stdin().read_to_string(&mut s).unwrap();s};let mut iter = s.split_whitespace();input_inner!{iter, $($r)*}};}#[macro_export]macro_rules! input_inner {($iter:expr) => {};($iter:expr, ) => {};($iter:expr, $var:ident : $t:tt $($r:tt)*) => {let $var = read_value!($iter, $t);input_inner!{$iter $($r)*}};}#[macro_export]macro_rules! read_value {($iter:expr, ( $($t:tt),* )) => {( $(read_value!($iter, $t)),* )};($iter:expr, [ $t:tt ; $len:expr ]) => {(0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>()};($iter:expr, chars) => {read_value!($iter, String).chars().collect::<Vec<char>>()};($iter:expr, bytes) => {read_value!($iter, String).bytes().collect::<Vec<u8>>()};($iter:expr, usize1) => {read_value!($iter, usize) - 1};($iter:expr, $t:ty) => {$iter.next().unwrap().parse::<$t>().expect("Parse error")};}// ---------- end input macro ----------// 以下のクエリを処理する// add_line(a, b): 直線 ax + b を追加// find(x): min (ax + b) を返す。空のとき呼ぶとREになる// 計算量// 直線追加クエリがN回飛んでくるとする// 直線追加 償却O(log N)// 点質問: O((log N)^2)// ---------- begin incremental convex hull trick (min) ----------// reference: https://yukicoder.me/wiki/decomposable_searching_problem// verify: https://old.yosupo.jp/submission/35150#[derive(Clone)]struct ConvexHullTrick {line: Vec<(i64, i64)>,}impl ConvexHullTrick {fn new(mut line: Vec<(i64, i64)>) -> Self {assert!(line.len() > 0);line.sort();line.dedup_by(|a, b| a.0 == b.0);let mut stack: Vec<(i64, i64)> = vec![];for (a, b) in line {while stack.len() >= 2 {let len = stack.len();let (c, d) = stack[len - 1];let (e, f) = stack[len - 2];let x = (d - b).div_euclid(a - c);let y = (f - d).div_euclid(c - e);if x >= y {stack.pop();} else {break;}}stack.push((a, b));}ConvexHullTrick { line: stack }}fn find(&self, x: i64) -> i64 {let mut l = 0;let mut r = self.line.len() - 1;let line = &self.line;let func = |k: usize| -> i64 {let (a, b) = line[k];a * x + b};while r - l >= 3 {let ll = (2 * l + r) / 3;let rr = (l + 2 * r) / 3;if func(ll) <= func(rr) {r = rr;} else {l = ll;}}line[l..=r].iter().map(|p| p.0 * x + p.1).min().unwrap()}}#[derive(Clone, Default)]pub struct IncrementalCHT {size: usize,cht: Vec<(ConvexHullTrick, usize)>,}impl IncrementalCHT {pub fn new() -> Self {IncrementalCHT {size: 0,cht: vec![]}}pub fn add_line(&mut self, a: i64, b: i64) {self.size += 1;let mut line = vec![(a, b)];let mut p = 0;while self.cht.last().map_or(false, |q| q.1 == p) {p += 1;line.append(&mut self.cht.pop().unwrap().0.line);}let cht = ConvexHullTrick::new(line);self.cht.push((cht, p));}pub fn find(&self, x: i64) -> i64 {self.cht.iter().map(|p| p.0.find(x)).min().unwrap()}pub fn append(&mut self, other: &mut Self) {if self.size < other.size {std::mem::swap(self, other);}for (mut cht, _) in other.cht.drain(..) {for (a, b) in cht.line.drain(..) {self.add_line(a, b);}}other.size = 0;}}// ---------- end incremental convex hull trick (min) ----------// ---------- begin chmin, chmax ----------pub trait ChangeMinMax {fn chmin(&mut self, x: Self) -> bool;fn chmax(&mut self, x: Self) -> bool;}impl<T: PartialOrd> ChangeMinMax for T {fn chmin(&mut self, x: Self) -> bool {*self > x && {*self = x;true}}fn chmax(&mut self, x: Self) -> bool {*self < x && {*self = x;true}}}// ---------- end chmin, chmax ----------