結果

問題 No.1477 Lamps on Graph
ユーザー StrorkisStrorkis
提出日時 2021-04-16 21:56:57
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,430 bytes
コンパイル時間 23,680 ms
コンパイル使用メモリ 405,356 KB
実行使用メモリ 14,600 KB
最終ジャッジ日時 2024-07-03 01:40:11
合計ジャッジ時間 17,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 32 ms
8,044 KB
testcase_13 AC 29 ms
7,552 KB
testcase_14 AC 39 ms
9,088 KB
testcase_15 AC 16 ms
5,376 KB
testcase_16 AC 12 ms
5,376 KB
testcase_17 AC 12 ms
5,376 KB
testcase_18 AC 32 ms
8,904 KB
testcase_19 AC 27 ms
7,552 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 27 ms
7,332 KB
testcase_22 AC 6 ms
5,376 KB
testcase_23 AC 19 ms
6,144 KB
testcase_24 AC 37 ms
9,984 KB
testcase_25 AC 13 ms
5,376 KB
testcase_26 AC 38 ms
9,788 KB
testcase_27 AC 18 ms
5,888 KB
testcase_28 AC 23 ms
6,784 KB
testcase_29 AC 20 ms
6,272 KB
testcase_30 AC 15 ms
5,376 KB
testcase_31 AC 13 ms
5,376 KB
testcase_32 AC 51 ms
14,600 KB
testcase_33 AC 47 ms
13,836 KB
testcase_34 AC 33 ms
14,588 KB
testcase_35 AC 58 ms
13,340 KB
testcase_36 AC 58 ms
13,272 KB
testcase_37 AC 50 ms
12,924 KB
testcase_38 AC 52 ms
12,976 KB
testcase_39 AC 56 ms
13,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Write;

fn main() {
    let ref mut buf = Vec::new();
    std::io::Read::read_to_end(&mut std::io::stdin(), buf).ok();
    let mut iter = std::str::from_utf8(buf).unwrap().split_whitespace();

    macro_rules! scan {
        ([$t:tt; $n:expr]) => ((0..$n).map(|_| scan!($t)).collect::<Vec<_>>());
        (($($t:tt),*)) => (($(scan!($t)),*));
        (Usize1) => (scan!(usize) - 1);
        (Bytes) => (scan!(String).into_bytes());
        ($t:ty) => (iter.next().unwrap().parse::<$t>().unwrap());
    }

    let (n, m) = scan!((usize, usize));
    let a = scan!([u32; n]);

    let mut g = vec![vec![]; n];
    for _ in 0..m {
        let (u, v) = scan!((Usize1, Usize1));
        g[u].push(v);
        g[v].push(u);
    }

    let k = scan!(usize);

    let mut lit = vec![false; n];
    for _ in 0..k {
        let b = scan!(Usize1);
        lit[b] = true;
    }

    let mut ord = (0..n).collect::<Vec<_>>();
    ord.sort_by_key(|&i| a[i]);

    let mut ans = vec![];
    for from in ord {
        if !lit[from] {
            continue;
        }
        ans.push(from);
        for &to in &g[from] {
            if a[from] < a[to] {
                lit[to] ^= true;
            }
        }
    }

    let stdout = std::io::stdout();
    let mut writer = std::io::BufWriter::new(stdout.lock());

    writeln!(writer, "{}", ans.len()).ok();
    for ans in ans {
        writeln!(writer, "{}", ans + 1).ok();
    }
}
0