結果

問題 No.2879 Range Flip Queries
ユーザー naut3naut3
提出日時 2024-11-03 20:11:17
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 1,312 bytes
コンパイル時間 13,765 ms
コンパイル使用メモリ 406,996 KB
実行使用メモリ 46,076 KB
最終ジャッジ日時 2024-11-03 20:11:40
合計ジャッジ時間 22,880 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 17 ms
6,816 KB
testcase_04 AC 16 ms
6,820 KB
testcase_05 AC 16 ms
6,820 KB
testcase_06 AC 17 ms
6,816 KB
testcase_07 AC 17 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 1 ms
6,820 KB
testcase_12 AC 1 ms
6,816 KB
testcase_13 AC 72 ms
30,096 KB
testcase_14 AC 78 ms
32,468 KB
testcase_15 AC 49 ms
17,332 KB
testcase_16 AC 33 ms
16,460 KB
testcase_17 AC 80 ms
37,936 KB
testcase_18 AC 107 ms
44,924 KB
testcase_19 AC 109 ms
45,112 KB
testcase_20 AC 107 ms
45,252 KB
testcase_21 AC 102 ms
45,708 KB
testcase_22 AC 103 ms
45,120 KB
testcase_23 AC 100 ms
45,196 KB
testcase_24 AC 102 ms
45,656 KB
testcase_25 AC 106 ms
45,796 KB
testcase_26 AC 104 ms
45,712 KB
testcase_27 AC 103 ms
45,704 KB
testcase_28 AC 102 ms
46,076 KB
testcase_29 AC 95 ms
41,284 KB
testcase_30 AC 92 ms
42,236 KB
testcase_31 AC 90 ms
41,524 KB
testcase_32 AC 90 ms
41,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(non_snake_case, unused_must_use, unused_imports)]
use std::io::{self, prelude::*};

fn main() {
    let (stdin, stdout) = (io::read_to_string(io::stdin()).unwrap(), io::stdout());
    let (mut stdin, mut buffer) = (stdin.split_whitespace(), io::BufWriter::new(stdout.lock()));

    macro_rules! input {
        ($t: tt, $n: expr) => {
            (0..$n).map(|_| input!($t)).collect::<Vec<_>>()
        };
        (Chars) => {
            input! {String}.chars().collect::<Vec<_>>()
        };
        (Usize1) => {
            stdin.next().unwrap().parse::<usize>().unwrap() - 1
        };
        ($t: ty) => {
            stdin.next().unwrap().parse::<$t>().unwrap()
        };
    }

    let N = input!(usize);
    let Q = input!(usize);
    let A = input!(i32, N);

    let mut D = vec![0; N + 1];

    for _ in 0..Q {
        let l = input!(Usize1);
        let r = input!(Usize1);

        D[l] += 1;
        D[r + 1] -= 1;
    }

    let mut S = vec![D[0]];

    for i in 1..N {
        S.push(S[i - 1] + D[i]);
    }

    let ans = (0..N)
        .map(|i| if (A[i] + S[i]) % 2 == 0 { 0 } else { 1 })
        .collect::<Vec<_>>();
    writeln!(
        buffer,
        "{}",
        ans.iter()
            .map(|x| x.to_string())
            .collect::<Vec<_>>()
            .join(" ")
    );
}
0