結果
問題 | No.2076 Concon Substrings (ConVersion) |
ユーザー | akakimidori |
提出日時 | 2022-09-16 22:02:37 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 193 ms / 5,000 ms |
コード長 | 2,596 bytes |
コンパイル時間 | 13,441 ms |
コンパイル使用メモリ | 401,888 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-01 14:25:38 |
合計ジャッジ時間 | 15,262 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 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 | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 193 ms
5,376 KB |
testcase_08 | AC | 123 ms
5,376 KB |
testcase_09 | AC | 190 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 161 ms
5,376 KB |
testcase_16 | AC | 37 ms
5,376 KB |
testcase_17 | AC | 22 ms
5,376 KB |
testcase_18 | AC | 150 ms
5,376 KB |
testcase_19 | AC | 7 ms
5,376 KB |
testcase_20 | AC | 165 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 9 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | AC | 3 ms
5,376 KB |
testcase_27 | AC | 7 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 6 ms
5,376 KB |
testcase_30 | AC | 4 ms
5,376 KB |
testcase_31 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
warning: unused variable: `n` --> src/main.rs:3:9 | 3 | n: usize, | ^ | help: `n` is captured in macro and introduced a unused variable --> src/main.rs:76:13 | 2 | / input! { 3 | | n: usize, 4 | | a: usize, 5 | | b: usize, 6 | | s: bytes, 7 | | } | |_____- in this macro invocation ... 76 | let $var = read_value!($iter, $t); | ^^^^ = note: `#[warn(unused_variables)]` on by default = note: this warning originates in the macro `input_inner` which comes from the expansion of the macro `input` (in Nightly builds, run with -Z macro-backtrace for more info)
ソースコード
fn run() { input! { n: usize, a: usize, b: usize, s: bytes, } let con = [b'c', b'o', b'n']; let mut cnt = vec![]; let mut x = 0; while x < s.len() { let c = s[x..].chunks_exact(3).take_while(|s| s == &con).count(); if c > 0 { cnt.push(c); x += 3 * c; } else { x += 1; } } let inf = std::i32::MAX / 2; let mut dp = vec![0i32]; for c in cnt { let mut next = vec![-inf; dp.len() + c / a]; for i in 0..=(c / a) { let y = ((c - a * i) / b) as i32; for (next, dp) in next[i..].iter_mut().zip(dp.iter()).filter(|p| *p.1 != -inf) { *next = std::cmp::max(*next, *dp + y); } } dp = next; } let mut ans = 0; for (i, dp) in dp.iter().enumerate() { if *dp < 0 { continue; } let y = *dp as usize; if y < i { ans = ans.max(2 * y + 1); } else { ans = ans.max(2 * i); } } println!("{}", ans); } fn main() { run(); } // ---------- 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 ----------