結果
問題 | No.1959 Prefix MinMax |
ユーザー | akakimidori |
提出日時 | 2022-05-27 22:02:28 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,604 bytes |
コンパイル時間 | 11,396 ms |
コンパイル使用メモリ | 380,820 KB |
実行使用メモリ | 25,460 KB |
平均クエリ数 | 4.84 |
最終ジャッジ日時 | 2024-09-20 15:55:20 |
合計ジャッジ時間 | 17,051 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
25,220 KB |
testcase_01 | AC | 19 ms
24,580 KB |
testcase_02 | AC | 19 ms
25,208 KB |
testcase_03 | AC | 18 ms
24,964 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
ソースコード
mod util { pub trait Join { fn join(self, sep: &str) -> String; } impl<T, I> Join for I where I: Iterator<Item = T>, T: std::fmt::Display, { fn join(self, sep: &str) -> String { let mut s = String::new(); use std::fmt::*; for (i, v) in self.enumerate() { if i > 0 { write!(&mut s, "{}", sep).ok(); } write!(&mut s, "{}", v).ok(); } s } } } fn read() -> Vec<usize> { let mut s = String::new(); loop { std::io::stdin().read_line(&mut s).unwrap(); let res = s .trim() .split_whitespace() .flat_map(|s| s.parse()) .collect::<Vec<_>>(); if res.len() > 0 { return res; } } } fn run() { use util::*; let n = read()[0]; println!("? {}", [0, 1].iter().cycle().take(n - 1).join(" ")); let p = read(); let mut ask = [0, 1].iter().cloned().cycle().take(n - 1).collect::<Vec<_>>(); for i in 0..(n - 1) { if p[i] == p[i + 1] { ask[i] = (i % 2) ^ 1; } } println!("? {}", ask.iter().join(" ")); let q = read(); let mut ans = p.clone(); for i in 0..(n - 1) { if p[i] == p[i + 1] { ans[i + 1] = q[i + 1]; } } let mut t = ans.clone(); t.sort(); t.dedup(); assert!(t.len() == n); println!("! {}", ans.iter().join(" ")); } fn main() { let t = read()[0]; for _ in 0..t { run(); } }