結果

問題 No.1477 Lamps on Graph
ユーザー akakimidoriakakimidori
提出日時 2021-04-16 20:06:26
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 2,393 bytes
コンパイル時間 18,781 ms
コンパイル使用メモリ 392,120 KB
実行使用メモリ 15,400 KB
最終ジャッジ日時 2024-07-02 21:56:25
合計ジャッジ時間 21,797 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 0 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 0 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 23 ms
8,704 KB
testcase_13 AC 20 ms
8,084 KB
testcase_14 AC 28 ms
9,984 KB
testcase_15 AC 14 ms
6,944 KB
testcase_16 AC 10 ms
6,940 KB
testcase_17 AC 9 ms
6,944 KB
testcase_18 AC 24 ms
9,704 KB
testcase_19 AC 20 ms
8,236 KB
testcase_20 AC 8 ms
6,940 KB
testcase_21 AC 21 ms
8,576 KB
testcase_22 AC 5 ms
6,940 KB
testcase_23 AC 16 ms
6,944 KB
testcase_24 AC 29 ms
10,816 KB
testcase_25 AC 11 ms
6,944 KB
testcase_26 AC 28 ms
11,020 KB
testcase_27 AC 15 ms
6,944 KB
testcase_28 AC 18 ms
7,508 KB
testcase_29 AC 16 ms
6,944 KB
testcase_30 AC 11 ms
6,940 KB
testcase_31 AC 10 ms
6,940 KB
testcase_32 AC 39 ms
15,396 KB
testcase_33 AC 35 ms
15,400 KB
testcase_34 AC 28 ms
14,904 KB
testcase_35 AC 41 ms
14,772 KB
testcase_36 AC 43 ms
14,620 KB
testcase_37 AC 41 ms
14,048 KB
testcase_38 AC 39 ms
14,216 KB
testcase_39 AC 44 ms
14,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// ---------- begin input macro ----------
// reference: https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    (source = $s:expr, $($r:tt)*) => {
        let mut iter = $s.split_whitespace();
        input_inner!{iter, $($r)*}
    };
    ($($r:tt)*) => {
        let s = {
            use std::io::Read;
            let mut s = String::new();
            std::io::stdin().read_to_string(&mut s).unwrap();
            s
        };
        let mut iter = s.split_whitespace();
        input_inner!{iter, $($r)*}
    };
}

macro_rules! input_inner {
    ($iter:expr) => {};
    ($iter:expr, ) => {};
    ($iter:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($iter, $t);
        input_inner!{$iter $($r)*}
    };
}

macro_rules! read_value {
    ($iter:expr, ( $($t:tt),* )) => {
        ( $(read_value!($iter, $t)),* )
    };
    ($iter:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>()
    };
    ($iter:expr, chars) => {
        read_value!($iter, String).chars().collect::<Vec<char>>()
    };
    ($iter:expr, bytes) => {
        read_value!($iter, String).bytes().collect::<Vec<u8>>()
    };
    ($iter:expr, usize1) => {
        read_value!($iter, usize) - 1
    };
    ($iter:expr, $t:ty) => {
        $iter.next().unwrap().parse::<$t>().expect("Parse error")
    };
}
// ---------- end input macro ----------

use std::io::Write;

fn run() {
    input! {
        n: usize,
        m: usize,
        a: [u32; n],
        e: [(usize1, usize1); m],
        k: usize,
        b: [usize1; k],
    }
    let mut g = vec![vec![]; n];
    for (a, b) in e {
        g[a].push(b);
        g[b].push(a);
    }
    let mut ord = a.iter().cloned().enumerate().collect::<Vec<_>>();
    ord.sort_by_key(|p| p.1);
    let mut state = vec![false; n];
    for b in b {
        state[b] = true;
    }
    let mut ans = vec![];
    for (v, _) in ord {
        if state[v] {
            state[v] = false;
            ans.push(v);
            for &u in g[v].iter() {
                if a[u] > a[v] {
                    state[u] ^= true;
                }
            }
        }
    }
    let out = std::io::stdout();
    let mut out = std::io::BufWriter::new(out.lock());
    writeln!(out, "{}", ans.len()).ok();
    for a in ans {
        writeln!(out, "{}", a + 1).ok();
    }
}

fn main() {
    run();
}
0