結果
問題 | No.2740 Old Maid |
ユーザー | konishi shogo |
提出日時 | 2024-04-20 20:30:35 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,764 bytes |
コンパイル時間 | 12,898 ms |
コンパイル使用メモリ | 379,868 KB |
実行使用メモリ | 16,232 KB |
最終ジャッジ日時 | 2024-10-12 18:36:11 |
合計ジャッジ時間 | 20,987 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
コンパイルメッセージ
warning: function `read_vec2` is never used --> src/main.rs:58:4 | 58 | fn read_vec2<T: std::str::FromStr>(n: u32) -> Vec<Vec<T>> { | ^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default
ソースコード
fn main() { let n: usize = read(); assert!(n % 2 == 0); let mut nums: Vec<usize> = read_vec(); for p in old_maid(&mut nums) { print!("{} ", p); } print!("\n"); } fn old_maid(nums: &mut[usize]) -> Vec<usize> { assert_eq!(nums.len() % 2, 0); let n = nums.len(); let mut rev = vec![usize::MAX; n]; for p in nums.iter_mut() { *p = *p - 1; } for (i, p) in nums.iter().enumerate() { rev[*p] = i; } let mut ret = Vec::new(); let mut min = 0; for _ in 0..n / 2 { while rev[min] >= nums.len() - 1 { min += 1; assert!(min < nums.len()); } let mut n_idx = rev[min] + 1; while nums[n_idx] >= rev.len() || rev[nums[n_idx]] >= nums.len() { n_idx += 1; assert!(n_idx < nums.len()); } let next = nums[n_idx]; rev[min] = usize::MAX; rev[next] = usize::MAX; while rev.last().is_some_and(|i| *i == usize::MAX) { rev.pop(); } ret.push(min + 1); ret.push(next + 1); } ret } fn read<T: std::str::FromStr>() -> T { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); s.trim().parse().ok().unwrap() } fn read_vec<T: std::str::FromStr>() -> Vec<T> { read::<String>() .split_whitespace() .map(|e| e.parse().ok().unwrap()) .collect() } fn read_vec2<T: std::str::FromStr>(n: u32) -> Vec<Vec<T>> { (0..n).map(|_| read_vec()).collect() } #[cfg(test)] mod test { use super::old_maid; #[test] fn test() { assert_eq!(old_maid(&mut vec![3, 2, 4, 1]), vec![2, 4, 3, 1]); assert_eq!(old_maid(&mut vec![4,6,3,2,8,5,7,1]), vec![2,8,3,5,4,6,7,1]); } }