結果

問題 No.2918 Divide Applicants Fairly
ユーザー ArcAkiArcAki
提出日時 2024-10-08 09:55:37
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 2,746 bytes
コンパイル時間 13,448 ms
コンパイル使用メモリ 385,364 KB
実行使用メモリ 52,016 KB
最終ジャッジ日時 2024-10-08 09:56:21
合計ジャッジ時間 42,345 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
51,880 KB
testcase_01 AC 169 ms
51,880 KB
testcase_02 AC 148 ms
51,884 KB
testcase_03 AC 876 ms
52,016 KB
testcase_04 AC 782 ms
51,880 KB
testcase_05 WA -
testcase_06 AC 217 ms
51,884 KB
testcase_07 AC 158 ms
51,884 KB
testcase_08 WA -
testcase_09 AC 414 ms
51,880 KB
testcase_10 AC 1,029 ms
51,880 KB
testcase_11 AC 630 ms
51,756 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 213 ms
51,756 KB
testcase_15 AC 686 ms
51,888 KB
testcase_16 AC 1,098 ms
51,884 KB
testcase_17 AC 415 ms
51,884 KB
testcase_18 AC 628 ms
51,776 KB
testcase_19 WA -
testcase_20 AC 644 ms
51,884 KB
testcase_21 AC 397 ms
51,884 KB
testcase_22 AC 161 ms
51,888 KB
testcase_23 AC 417 ms
51,884 KB
testcase_24 AC 1,074 ms
51,880 KB
testcase_25 AC 694 ms
51,884 KB
testcase_26 WA -
testcase_27 AC 555 ms
51,880 KB
testcase_28 WA -
testcase_29 AC 273 ms
51,884 KB
testcase_30 AC 808 ms
51,760 KB
testcase_31 AC 296 ms
51,888 KB
testcase_32 AC 1,076 ms
51,880 KB
testcase_33 AC 82 ms
51,880 KB
testcase_34 AC 118 ms
51,752 KB
testcase_35 AC 132 ms
51,756 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 429 ms
52,008 KB
testcase_40 AC 375 ms
51,884 KB
testcase_41 AC 371 ms
51,756 KB
testcase_42 AC 374 ms
51,884 KB
testcase_43 AC 388 ms
51,752 KB
testcase_44 AC 395 ms
51,888 KB
testcase_45 AC 426 ms
51,756 KB
testcase_46 AC 602 ms
51,884 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 404 ms
51,884 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 385 ms
51,884 KB
testcase_53 AC 339 ms
51,776 KB
testcase_54 AC 330 ms
51,884 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 415 ms
51,884 KB
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 240 ms
51,884 KB
testcase_61 AC 325 ms
51,884 KB
testcase_62 AC 406 ms
51,752 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};

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 ans = 1usize<<60;
    let d = 3_200_000;
    let mut flag = vec![0; 6_400_001];
    flag[d] = 1;
    for i in 0..n{
        let mut n_flag = vec![0; 6_400_001];
        for j in 0..=2*d{
            n_flag[j] |= flag[j];
            if r[i] == 0{
                if n_flag[j] > 0{
                    n_flag[j] |= 2;
                }
            } else if flag[j] > 0{
                if j >= r[i]{
                    n_flag[j-r[i]] |= flag[j] | 2;
                }
                if j+r[i] <= 2*d{
                    n_flag[j+r[i]] |= flag[j] | 4;
                }
            }
        }
        flag = n_flag
    }
    for i in 0..=d{
        if flag[i] & 6 == 6{
            ans = d-i;
        }
    }
    for i in d..=2*d{
        if flag[i] & 6 == 6{
            ans = ans.min(i-d);
        }
    }
    println!("{}", ans);
}
0