結果

問題 No.1017 Reiwa Sequence
ユーザー koba-e964koba-e964
提出日時 2020-04-03 22:12:22
言語 Rust
(1.77.0)
結果
AC  
実行時間 1,025 ms / 2,000 ms
コード長 4,504 bytes
コンパイル時間 2,077 ms
コンパイル使用メモリ 165,816 KB
実行使用メモリ 16,040 KB
最終ジャッジ日時 2023-09-16 02:12:19
合計ジャッジ時間 25,379 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
4,420 KB
testcase_01 AC 5 ms
4,532 KB
testcase_02 AC 3 ms
4,460 KB
testcase_03 AC 4 ms
4,424 KB
testcase_04 AC 3 ms
4,520 KB
testcase_05 AC 4 ms
4,496 KB
testcase_06 AC 3 ms
4,420 KB
testcase_07 AC 3 ms
4,496 KB
testcase_08 AC 5 ms
4,476 KB
testcase_09 AC 5 ms
4,468 KB
testcase_10 AC 51 ms
6,572 KB
testcase_11 AC 4 ms
4,424 KB
testcase_12 AC 53 ms
6,480 KB
testcase_13 AC 52 ms
6,536 KB
testcase_14 AC 4 ms
4,464 KB
testcase_15 AC 4 ms
4,520 KB
testcase_16 AC 4 ms
4,436 KB
testcase_17 AC 9 ms
4,508 KB
testcase_18 AC 4 ms
4,400 KB
testcase_19 AC 696 ms
6,608 KB
testcase_20 AC 702 ms
6,524 KB
testcase_21 AC 711 ms
6,600 KB
testcase_22 AC 709 ms
6,592 KB
testcase_23 AC 698 ms
6,580 KB
testcase_24 AC 722 ms
6,520 KB
testcase_25 AC 720 ms
6,644 KB
testcase_26 AC 1,025 ms
6,624 KB
testcase_27 AC 588 ms
6,460 KB
testcase_28 AC 97 ms
6,596 KB
testcase_29 AC 52 ms
6,608 KB
testcase_30 AC 582 ms
6,528 KB
testcase_31 AC 61 ms
6,488 KB
testcase_32 AC 369 ms
6,524 KB
testcase_33 AC 369 ms
6,516 KB
testcase_34 AC 4 ms
4,480 KB
testcase_35 AC 4 ms
4,428 KB
testcase_36 AC 4 ms
4,388 KB
testcase_37 AC 368 ms
6,596 KB
testcase_38 AC 369 ms
6,596 KB
testcase_39 AC 368 ms
6,596 KB
testcase_40 AC 81 ms
12,516 KB
testcase_41 AC 81 ms
12,540 KB
testcase_42 AC 80 ms
12,224 KB
testcase_43 AC 81 ms
12,368 KB
testcase_44 AC 81 ms
12,488 KB
testcase_45 AC 80 ms
12,404 KB
testcase_46 AC 80 ms
12,324 KB
testcase_47 AC 79 ms
12,292 KB
testcase_48 AC 56 ms
10,236 KB
testcase_49 AC 97 ms
16,040 KB
testcase_50 AC 35 ms
7,080 KB
testcase_51 AC 4 ms
4,404 KB
testcase_52 AC 790 ms
6,524 KB
testcase_53 AC 793 ms
6,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use std::cmp::*;
#[allow(unused_imports)]
use std::collections::*;
use std::io::{Write, BufWriter};
// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes
                .by_ref()
                .map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr, ) => {};

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

macro_rules! read_value {
    ($next:expr, ( $($t:tt),* )) => {
        ( $(read_value!($next, $t)),* )
    };

    ($next:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    };

    ($next:expr, chars) => {
        read_value!($next, String).chars().collect::<Vec<char>>()
    };

    ($next:expr, usize1) => {
        read_value!($next, usize) - 1
    };

    ($next:expr, [ $t:tt ]) => {{
        let len = read_value!($next, usize);
        (0..len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    }};

    ($next:expr, $t:ty) => {
        $next().parse::<$t>().expect("Parse error")
    };
}

#[allow(unused)]
macro_rules! debug {
    ($($format:tt)*) => (write!(std::io::stderr(), $($format)*).unwrap());
}
#[allow(unused)]
macro_rules! debugln {
    ($($format:tt)*) => (writeln!(std::io::stderr(), $($format)*).unwrap());
}

/// Generates an Iterator over subsets of univ, in the descending order. 
/// Verified by: http://judge.u-aizu.ac.jp/onlinejudge/review.jsp?rid=3050308
struct SubsetIter { bits: Option<usize>, univ: usize }
impl Iterator for SubsetIter {
    type Item = usize;
    fn next(&mut self) -> Option<usize> {
        match self.bits {
            None => None,
            Some(bits) => {
                let ans = bits;
                self.bits =
                    if bits == 0 { None }
                else { Some((bits - 1) & self.univ) };
                Some(ans)
            }
        }
    }
}
fn subsets(univ: usize) -> SubsetIter {
    SubsetIter { bits: Some(univ), univ: univ }
}

const W: usize = 150_001;

fn solve() {
    let out = std::io::stdout();
    let mut out = BufWriter::new(out.lock());
    macro_rules! puts {
        ($($format:tt)*) => (let _ = write!(out,$($format)*););
    }
    input! {
        n: usize,
        a: [usize; n],
    }
    let mut freq = vec![vec![]; W];
    for i in 0..n {
        freq[a[i]].push(i);
    }
    let mut ans = vec![0; n];
    macro_rules! emit {
        () => {
            puts!("Yes\n");
            for i in 0..n {
                puts!("{}{}", ans[i], if i + 1 == n { "\n" } else { " " });
            }
            return;
        }
    }
    for i in 1..W {
        if freq[i].len() >= 2 {
            ans[freq[i][0]] = i as i32;
            ans[freq[i][1]] = - (i as i32);
            emit!();
        }
    }
    let mut b = a.clone();
    b.sort();
    let mut ans_set = None;
    let m = min(19, b.len());
    let mut dp = vec![0; 1 << m];
    for bits in 0..1 << m {
        let mut sum = 0;
        for i in 0..m {
            if (bits & 1 << i) != 0 {
                sum += b[i] as i32;
            }
        }
        dp[bits] = sum;
    }
    'outer:
    for bits in 1..1 << m {
        if dp[bits] % 2 != 0 {
            continue;
        }
        for sub in subsets(bits) {
            let sum = dp[bits] - dp[sub] * 2;
            if sum == 0 {
                ans_set = Some((sub, bits - sub));
                break 'outer;
            }
        }
    }
    if let Some((s1, s2)) = ans_set {
        for i in 0..m {
            let idx = freq[b[i]][0];
            if (s1 & 1 << i) != 0 {
                ans[idx] = b[i] as i32;
            } else if (s2 & 1 << i) != 0 {
                ans[idx] = -(b[i] as i32);
            }
        }
        emit!();
    } else {
        puts!("No\n");
    }
}

fn main() {
    // In order to avoid potential stack overflow, spawn a new thread.
    let stack_size = 104_857_600; // 100 MB
    let thd = std::thread::Builder::new().stack_size(stack_size);
    thd.spawn(|| solve()).unwrap().join().unwrap();
}
0