結果

問題 No.429 CupShuffle
ユーザー phsplsphspls
提出日時 2022-12-01 23:53:27
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 1,546 bytes
コンパイル時間 12,727 ms
コンパイル使用メモリ 400,584 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-09 05:18:10
合計ジャッジ時間 13,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 24 ms
6,816 KB
testcase_12 AC 23 ms
6,816 KB
testcase_13 AC 24 ms
6,816 KB
testcase_14 AC 23 ms
6,816 KB
testcase_15 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused import: `std::task::Context`
 --> src/main.rs:1:5
  |
1 | use std::task::Context;
  |     ^^^^^^^^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default

ソースコード

diff #

use std::task::Context;


fn main() {
    let mut nkx = String::new();
    std::io::stdin().read_line(&mut nkx).ok();
    let nkx: Vec<usize> = nkx.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nkx[0];
    let k = nkx[1];
    let x = nkx[2];
    let fronts = (0..x).map(|i| {
            let mut temp = String::new();
            std::io::stdin().read_line(&mut temp).ok();
            if i < x-1 {
                let temp: Vec<usize> = temp.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
                (temp[0]-1, temp[1]-1)
            } else {
                (0, 0)
            }
        })
        .collect::<Vec<_>>();
    let mut backs = (x..k).map(|_| {
            let mut temp = String::new();
            std::io::stdin().read_line(&mut temp).ok();
            let temp: Vec<usize> = temp.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
            (temp[0]-1, temp[1]-1)
        })
        .collect::<Vec<_>>();
    let mut c = String::new();
    std::io::stdin().read_line(&mut c).ok();
    let mut ends: Vec<usize> = c.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();

    let mut starts = (1..=n).collect::<Vec<_>>();
    for &(a, b) in fronts.iter() {
        starts.swap(a, b);
    }
    backs.reverse();
    for &(a, b) in backs.iter() {
        ends.swap(a, b)
    }
    let mut result = vec![];
    for i in 0..n {
        if starts[i] != ends[i] {
            result.push(i+1);
        }
    }
    println!("{} {}", result[0], result[1]);
}
0