結果

問題 No.1017 Reiwa Sequence
ユーザー koba-e964koba-e964
提出日時 2020-04-03 21:51:41
言語 Rust
(1.77.0)
結果
TLE  
実行時間 -
コード長 3,827 bytes
コンパイル時間 1,546 ms
コンパイル使用メモリ 160,752 KB
実行使用メモリ 33,804 KB
最終ジャッジ日時 2023-09-16 01:11:36
合計ジャッジ時間 23,714 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
4,468 KB
testcase_01 AC 3 ms
4,416 KB
testcase_02 AC 4 ms
4,460 KB
testcase_03 AC 4 ms
4,468 KB
testcase_04 AC 3 ms
4,408 KB
testcase_05 AC 3 ms
4,408 KB
testcase_06 AC 4 ms
4,380 KB
testcase_07 AC 4 ms
4,496 KB
testcase_08 AC 3 ms
4,460 KB
testcase_09 AC 4 ms
4,384 KB
testcase_10 AC 11 ms
4,464 KB
testcase_11 AC 4 ms
4,416 KB
testcase_12 AC 26 ms
4,412 KB
testcase_13 AC 11 ms
4,464 KB
testcase_14 AC 5 ms
4,412 KB
testcase_15 AC 7 ms
4,420 KB
testcase_16 AC 5 ms
4,416 KB
testcase_17 AC 25 ms
4,472 KB
testcase_18 AC 4 ms
4,400 KB
testcase_19 AC 1,959 ms
4,512 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,822 ms
4,412 KB
testcase_27 AC 424 ms
4,480 KB
testcase_28 AC 20 ms
4,492 KB
testcase_29 AC 11 ms
4,408 KB
testcase_30 AC 26 ms
4,408 KB
testcase_31 AC 5 ms
4,484 KB
testcase_32 AC 26 ms
4,492 KB
testcase_33 AC 46 ms
4,556 KB
testcase_34 AC 5 ms
4,560 KB
testcase_35 AC 3 ms
4,440 KB
testcase_36 AC 4 ms
4,400 KB
testcase_37 TLE -
testcase_38 AC 3 ms
4,420 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます

ソースコード

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());
}

const W: usize = 150_001;
const PRUNE: i64 = 300_000;

fn dfs(a: &[usize], v: usize, sum: i64, s1: &mut Vec<usize>, s2: &mut Vec<usize>)
       -> Option<(Vec<usize>, Vec<usize>)> {
    let n = a.len();
    if sum == 0 && !(s1.is_empty() && s2.is_empty()) {
        return Some((s1.clone(), s2.clone()));
    }
    if sum < -PRUNE || sum > PRUNE {
        return None;
    }
    if v >= n {
        return None;
    }
    if sum < 0 {
        return dfs(a, v, -sum, s2, s1);
    }
    let val = a[v] as i64;
    s2.push(v);
    let sub2 = dfs(a, v + 1, sum - val, s1, s2);
    if sub2.is_some() { return sub2; }
    s2.pop();
    s1.push(v);
    let sub1 = dfs(a, v + 1, sum + val, s1, s2);
    if sub1.is_some() { return sub1; }
    s1.pop();
    dfs(a, v + 1, sum, s1, s2)
}

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!();
        }
    }
    if let Some((s1, s2)) = dfs(&a, 0, 0, &mut vec![], &mut vec![]) {
        for v in s1 {
            ans[v] = a[v] as i32;
        }
        for v in s2 {
            ans[v] = -(a[v] 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