結果
問題 | No.1542 ぽんぽんぽん ぽんぽんぽんぽん ぽんぽんぽん |
ユーザー | 57tggx |
提出日時 | 2021-05-29 00:48:37 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,690 bytes |
コンパイル時間 | 14,053 ms |
コンパイル使用メモリ | 379,120 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 11:58:39 |
合計ジャッジ時間 | 17,601 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 5 ms
5,248 KB |
testcase_06 | AC | 47 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 109 ms
5,248 KB |
testcase_09 | AC | 23 ms
5,248 KB |
testcase_10 | AC | 119 ms
5,248 KB |
testcase_11 | AC | 116 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | AC | 12 ms
5,248 KB |
testcase_14 | AC | 66 ms
5,248 KB |
testcase_15 | AC | 4 ms
5,248 KB |
testcase_16 | AC | 38 ms
5,248 KB |
testcase_17 | AC | 1 ms
5,248 KB |
testcase_18 | AC | 3 ms
5,248 KB |
testcase_19 | AC | 4 ms
5,248 KB |
testcase_20 | AC | 115 ms
5,248 KB |
testcase_21 | AC | 1 ms
5,248 KB |
testcase_22 | AC | 44 ms
5,248 KB |
testcase_23 | AC | 130 ms
5,248 KB |
testcase_24 | AC | 132 ms
5,248 KB |
testcase_25 | AC | 133 ms
5,248 KB |
testcase_26 | AC | 132 ms
5,248 KB |
testcase_27 | AC | 133 ms
5,248 KB |
testcase_28 | AC | 132 ms
5,248 KB |
testcase_29 | AC | 132 ms
5,248 KB |
testcase_30 | AC | 131 ms
5,248 KB |
testcase_31 | AC | 133 ms
5,248 KB |
testcase_32 | AC | 131 ms
5,248 KB |
ソースコード
// これは嘘解法 // WA にならなければいけない! #[allow(unused_macros)] macro_rules! debug { ($($a:expr),* $(,)*) => { #[cfg(debug_assertions)] eprintln!(concat!($("| ", stringify!($a), "={:?} "),*, "|"), $(&$a),*); }; } fn main() { let Input { n, s } = Input::read(std::io::stdin().lock()); let mut dp: Vec<Vec<(i32, i32, i32)>> = vec![vec![(0, 0, 0); n + 1]; n + 1]; // dp[i][j].0: s[i..j] の末尾に on を付け足したときの pon 数 // dp[i][j].1: s[i..j] の末尾に n を付け足したときの pon 数 // dp[i][j].2: s[i..j] の pon 数 // 0 <= i <= j <= n を満たす (i, j) を走査 for j in 0..=n { for i in (0..=j).rev() { // s[i..j] を見るとき, // 0 <= k <= l < j を満たす s[k..l] と // i < k <= l <= j を満たす s[k..l] は // 全て既に見ている if i < j { match s[j - 1] { 'p' => chmax(1, &mut dp[i][j].0), 'o' => chmax(dp[i][j - 1].0, &mut dp[i][j].1), 'n' => chmax(dp[i][j - 1].1, &mut dp[i][j].2), _ => unreachable!(), } } for k in 0..i { chmax(dp[k][i].0 + dp[i][j].2, &mut dp[k][j].0); chmax(dp[k][i].1 + dp[i][j].2, &mut dp[k][j].1); chmax(dp[k][i].2 + dp[i][j].2, &mut dp[k][j].2); } } } /* for row in &dp { eprintln!("{}", row.iter().map(|x| format!("{:?}", x)).collect::<Vec<_>>().join(" ")); } */ let ans = dp[0][n].2; if ans > 2 { println!("{}", ans - 2); } else { println!("{}", -1); } } fn chmax<T: PartialOrd>(x: T, y: &mut T) { if &x > y { *y = x; } } struct Input { n: usize, s: Vec<char>, } impl Input { fn read<T: std::io::BufRead>(mut input: T) -> Input { let n = { let mut buffer = String::new(); input.read_line(&mut buffer).unwrap(); match &split(&buffer).unwrap()[..] { [n] => n.parse().unwrap(), _ => panic!("input format error: N"), } }; let s = { let mut buffer = String::new(); input.read_line(&mut buffer).unwrap(); let split = split(&buffer).unwrap(); assert_eq!(split.len(), 1, "input format error: S"); split[0].chars().collect::<Vec<_>>() }; assert!(matches!(n, 1..=500)); assert_eq!(n, s.len()); Input { n: n, s: s } } } fn split(s: &str) -> Option<Vec<&str>> { enum State { Word(usize), Space, End, } let mut state = State::Word(0); let mut ret = Vec::new(); for (i, c) in s.char_indices() { let prev = match state { State::End => return None, State::Word(i) => i, State::Space => { state = State::Word(i); i } }; if c == ' ' || c == '\n' { ret.push(&s[prev..i]); state = if c == ' ' { State::Space } else { State::End }; } } matches!(state, State::End).then(|| ret) } #[test] fn test_split() { assert_eq!(split("word\n"), Some(vec!["word"])); assert_eq!( split("many words separated\n"), Some(vec!["many", "words", "separated"]) ); assert_eq!( split(" extra spaces \n"), Some(vec!["", "extra", "", "spaces", ""]) ); assert_eq!(split("no line feed"), None); assert_eq!(split("extra characters\nafter line feed"), None); }