結果
問題 | No.2740 Old Maid |
ユーザー | ardririy |
提出日時 | 2024-04-20 10:47:54 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,013 bytes |
コンパイル時間 | 12,043 ms |
コンパイル使用メモリ | 401,728 KB |
実行使用メモリ | 12,800 KB |
最終ジャッジ日時 | 2024-10-12 06:23:03 |
合計ジャッジ時間 | 16,409 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 1 ms
5,248 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | AC | 1 ms
5,248 KB |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | AC | 1 ms
5,248 KB |
testcase_63 | AC | 1 ms
5,248 KB |
testcase_64 | AC | 1 ms
5,248 KB |
コンパイルメッセージ
warning: unused import: `BTreeSet` --> src/main.rs:12:36 | 12 | use std::collections::{BinaryHeap, BTreeSet}; | ^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: static `INF` is never used --> src/main.rs:15:8 | 15 | static INF: u64 = 1e18 as u64; | ^^^ | = note: `#[warn(dead_code)]` on by default
ソースコード
/* ▄▌▐▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▌ ▄▄██▌█ 宅急便です! ▄▄▄▌▐██▌█ Rating +25 :) をお届けに参りました! ███████▌█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▌ ▀(⊙)▀▀▀▀(⊙)(⊙)▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀(⊙ */ use std::cmp::Reverse; use std::collections::{BinaryHeap, BTreeSet}; use proconio::input; static INF: u64 = 1e18 as u64; trait ChLibs<T: std::cmp::Ord> { fn chmin(&mut self, elm: T) -> bool; fn chmax(&mut self, elm: T) -> bool; } impl<T: std::cmp::Ord> ChLibs<T> for T { fn chmin(&mut self, elm: T) -> bool { return if *self > elm { *self = elm; true } else { false } } fn chmax(&mut self, elm: T) -> bool { return if *self < elm { *self = elm; true } else { false } } } fn solve(){ input! { n: usize, p: [u64; n] } let mut pq = BinaryHeap::new(); let mut indexes = (0..n).collect::<Vec<_>>(); for (idx, &x) in p.iter().enumerate() { if idx == n-1 { continue; } pq.push(Reverse((x, idx))); } let mut seen = vec![false; n]; let mut ans = vec![]; while let Some(Reverse((x, idx))) = pq.pop() { if seen[idx] { continue; } seen[idx] = true; seen[indexes[idx+1]] = true; ans.push(x); ans.push(p[indexes[idx+1]]); if idx != n-2 { indexes[idx+1] = indexes[idx+2]; indexes[idx] = indexes[idx+1]; } } for (idx, &x) in ans.iter().enumerate() { print!("{}{}", x, if idx == ans.len()-1 { "" } else { " " }); } println!(); } fn main() { // input! { i: usize } let mut i = 1; while i != 0 { solve(); i -= 1; } }