結果

問題 No.2918 Divide Applicants Fairly
ユーザー ArcAkiArcAki
提出日時 2024-10-08 10:35:55
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 2,811 bytes
コンパイル時間 12,235 ms
コンパイル使用メモリ 402,236 KB
実行使用メモリ 52,080 KB
最終ジャッジ日時 2024-10-08 10:36:40
合計ジャッジ時間 32,618 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
51,880 KB
testcase_01 AC 75 ms
51,880 KB
testcase_02 AC 62 ms
51,904 KB
testcase_03 AC 740 ms
51,880 KB
testcase_04 AC 596 ms
51,788 KB
testcase_05 WA -
testcase_06 AC 123 ms
51,752 KB
testcase_07 AC 97 ms
51,880 KB
testcase_08 WA -
testcase_09 AC 303 ms
51,876 KB
testcase_10 AC 864 ms
51,880 KB
testcase_11 AC 491 ms
51,740 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 122 ms
51,804 KB
testcase_15 AC 560 ms
51,876 KB
testcase_16 AC 910 ms
51,728 KB
testcase_17 AC 271 ms
51,880 KB
testcase_18 AC 483 ms
51,880 KB
testcase_19 WA -
testcase_20 AC 483 ms
51,772 KB
testcase_21 AC 263 ms
51,860 KB
testcase_22 AC 74 ms
51,840 KB
testcase_23 AC 298 ms
51,760 KB
testcase_24 AC 856 ms
51,780 KB
testcase_25 AC 512 ms
51,880 KB
testcase_26 WA -
testcase_27 AC 455 ms
51,884 KB
testcase_28 WA -
testcase_29 AC 152 ms
51,880 KB
testcase_30 AC 645 ms
51,844 KB
testcase_31 AC 167 ms
51,884 KB
testcase_32 AC 901 ms
51,888 KB
testcase_33 AC 18 ms
26,880 KB
testcase_34 AC 33 ms
51,840 KB
testcase_35 AC 51 ms
51,884 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 327 ms
51,776 KB
testcase_40 AC 249 ms
51,896 KB
testcase_41 AC 254 ms
51,792 KB
testcase_42 AC 303 ms
51,876 KB
testcase_43 AC 282 ms
51,868 KB
testcase_44 AC 293 ms
51,884 KB
testcase_45 AC 310 ms
51,768 KB
testcase_46 AC 516 ms
51,756 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 268 ms
51,880 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 303 ms
51,896 KB
testcase_53 AC 228 ms
51,864 KB
testcase_54 AC 225 ms
51,880 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 332 ms
51,752 KB
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 151 ms
51,884 KB
testcase_61 AC 237 ms
51,852 KB
testcase_62 AC 291 ms
51,880 KB
testcase_63 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use std::{collections::
          {HashSet, HashMap, BinaryHeap, VecDeque, BTreeSet, BTreeMap},
          mem::{swap},
          cmp::{Reverse, Ordering, PartialOrd, PartialEq},
          fmt::{Debug},
          time::Instant};
//#[allow(unused_imports)]
//use rand::{Rng, thread_rng, seq::{SliceRandom, IndexedRandom}};

use std::io::{Read, BufReader, stdin};

struct InputReader<R: Read> {
    bytes: std::iter::Peekable<std::io::Bytes<BufReader<R>>>,
}
impl<R: Read> InputReader<R> {
    fn new(reader: R) -> Self {
        let reader = BufReader::new(reader);
        let bytes = reader.bytes().peekable();
        Self { bytes }
    }

    fn next_token(&mut self) -> String {
        self.bytes
            .by_ref()
            .map(|r| r.unwrap() as char)
            .take_while(|c| !c.is_whitespace())
            .collect()
    }
}
macro_rules! input {
    ($reader:expr, $($r:tt)*) => {
        let mut next = || $reader.next_token();
        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, usize) => {
        $next().parse::<usize>().expect("Parse error")
    };
    ($next:expr, $t:ty) => {
        $next().parse::<$t>().expect("Parse error")
    };
}

fn main() {
    let stdin = stdin();
    let mut reader = InputReader::new(stdin.lock());
    input!{
        reader,
        n: usize,
        r: [usize; n],
    }
    let mut cnt = 0;
    for i in 0..n{
        if r[i] == 0{
            cnt += 1;
        }
    }
    if cnt>=2{println!("0"); return;}
    let d = 3_200_000;
    let mut flag = vec![0; 6_400_001];
    if r[0]!=0{
        flag[d+r[0]] = 1;
    }
    for i in 1..n{
        if r[i]==0{continue}
        let mut nf = flag.clone();
        nf[d+r[i]] = 1;
        for j in 0..=2*d{
            if flag[j] > 0{
                if r[i]+j <= 2*d{
                    nf[j+r[i]] |= flag[j] | 1;
                }
                if j >= r[i]{
                    nf[j-r[i]] = flag[j] | 2;
                }
            }
        }
        flag = nf;
    }
    for i in 0..=d{
        if (cnt > 0 && (flag[d+i]>0||flag[d-i]>0))||(flag[d+i]==3||flag[d-i]==3){
            println!("{}", i);
            return;
        }
    }
}
0