結果
問題 | No.1288 yuki collection |
ユーザー | koba-e964 |
提出日時 | 2023-07-14 00:26:51 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 6,390 bytes |
コンパイル時間 | 21,944 ms |
コンパイル使用メモリ | 385,076 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-15 09:37:49 |
合計ジャッジ時間 | 24,038 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 266 ms
5,376 KB |
testcase_14 | AC | 263 ms
5,376 KB |
testcase_15 | AC | 208 ms
5,376 KB |
testcase_16 | AC | 207 ms
5,376 KB |
testcase_17 | AC | 270 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 272 ms
5,376 KB |
testcase_20 | AC | 274 ms
5,376 KB |
testcase_21 | AC | 279 ms
5,376 KB |
testcase_22 | AC | 275 ms
5,376 KB |
testcase_23 | AC | 278 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 158 ms
5,376 KB |
testcase_28 | AC | 163 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | AC | 11 ms
5,376 KB |
testcase_31 | AC | 15 ms
5,376 KB |
testcase_32 | AC | 16 ms
5,376 KB |
testcase_33 | AC | 181 ms
5,376 KB |
testcase_34 | AC | 257 ms
5,376 KB |
testcase_35 | AC | 230 ms
5,376 KB |
testcase_36 | AC | 267 ms
5,376 KB |
testcase_37 | AC | 269 ms
5,376 KB |
testcase_38 | AC | 195 ms
5,376 KB |
testcase_39 | AC | 152 ms
5,376 KB |
testcase_40 | AC | 4 ms
5,376 KB |
testcase_41 | AC | 1 ms
5,376 KB |
testcase_42 | AC | 1 ms
5,376 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}; | ^^^^^
ソースコード
#[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; } } } // Minimum cost flow. // Verified by: yukicoder No.1301 Strange Graph Shortest Path // (https://yukicoder.me/submissions/590401) // AtCoder Library Practice Contest - E // (https://atcoder.jp/contests/practice2/submissions/22478556) // ACL Contest 1 - C // (https://atcoder.jp/contests/acl1/submissions/23898415) type Cap = isize; type Cost = i64; #[derive(Debug, Clone, Copy)] struct Edge { to: usize, cap: Cap, cost: Cost, rev: usize, // rev is the position of reverse edge in graph[to] } #[derive(Debug, Clone)] struct MinCostFlow { n: usize, graph: Vec<Vec<Edge>>, h: Vec<Cost>, // potential, dist: Vec<Cost>, // minimum distance prev: Vec<(usize, usize)>, // previous vertex and edge } impl MinCostFlow { // Initializes this solver. n is the number of vertices. fn new(n: usize) -> Self { MinCostFlow { n: n, graph: vec![vec![]; n], h: vec![0; n], dist: vec![0; n], prev: vec![(0, 0); n], } } fn add_edge(&mut self, from: usize, to: usize, cap: Cap, cost: Cost) { let fst = Edge { to: to, cap: cap, cost: cost, rev: self.graph[to].len(), }; self.graph[from].push(fst); let snd = Edge { to: from, cap: 0, cost: -cost, rev: self.graph[from].len() - 1, }; self.graph[to].push(snd); } // Calcucates the minimum cost flow // whose source is s, sink is t, and flow is f. fn min_cost_flow(&mut self, s: usize, t: usize, mut f: Cap) -> Cost { let n = self.n; let inf: Cost = std::i64::MAX / 10; // ????? let mut res = 0; let h = &mut self.h; let dist = &mut self.dist; while f > 0 { let mut que = std::collections::BinaryHeap::<(Cost, usize)>::new(); for i in 0..n { dist[i] = inf; } dist[s] = 0; que.push((0, s)); while let Some((d, v)) = que.pop() { let d = -d; if dist[v] < d { continue; } for (i, &e) in self.graph[v].iter().enumerate() { if e.cap > 0 && dist[e.to] > dist[v] + e.cost + h[v] - h[e.to] { dist[e.to] = dist[v] + e.cost + h[v] - h[e.to]; self.prev[e.to] = (v, i); que.push((-dist[e.to], e.to)); } } } if dist[t] == inf { return -1; // Cannot add flow anymore } for i in 0..n { h[i] += dist[i]; } // Add flow fully let mut d = f; let mut i = t; while i != s { let (pv, pe) = self.prev[i]; d = std::cmp::min(d, self.graph[pv][pe].cap); i = pv; } f -= d; res += d as Cost * h[t]; i = t; while i != s { let (pv, pe) = self.prev[i]; self.graph[pv][pe].cap -= d; let erev = self.graph[pv][pe].rev; self.graph[i][erev].cap += d; i = pv; } } return res; } } fn main() { // In order to avoid potential stack overflow, spawn a new thread. let stack_size = 104_857_600; // 100 MB let thd = std::thread::Builder::new().stack_size(stack_size); thd.spawn(|| solve()).unwrap().join().unwrap(); } // https://yukicoder.me/problems/no/1288 (3.5) // 最小費用流? fn solve() { input! { n: usize, s: chars, v: [i64; n], } let mut mcf = MinCostFlow::new(2 + 3 * n); const INF: isize = 1001; const VINF: i64 = 1 << 42; // 0 -y-> 2..2 + n -u-> 2 + n..2 + 2 * n -k-> 2 + 2 * n..2 + 3 * n -i-> 1 for i in 0..n { if i > 0 { for j in 0..3 { mcf.add_edge(2 + j * n + i - 1, 2 + j * n + i, INF, 0); } } let idx = ['y', 'u', 'k', 'i'].iter().position(|&c| c == s[i]).unwrap(); if idx == 0 { mcf.add_edge(0, 2 + i, 1, VINF - v[i]); } else if idx == 3 { mcf.add_edge(2 + 2 * n + i, 1, 1, VINF - v[i]); } else { mcf.add_edge(2 + (idx - 1) * n + i, 2 + idx * n + i, 1, VINF - v[i]); } } let mut tot = 0; loop { let c = mcf.min_cost_flow(0, 1, 1); if c > 0 { tot += 4 * VINF - c; } else { break; } } println!("{}", tot); }