結果

問題 No.1150 シュークリームゲーム(Easy)
ユーザー Yukino DX.Yukino DX.
提出日時 2024-09-12 14:11:09
言語 Rust
(1.77.0 + proconio)
結果
RE  
実行時間 -
コード長 1,256 bytes
コンパイル時間 16,338 ms
コンパイル使用メモリ 401,908 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-12 14:11:28
合計ジャッジ時間 16,871 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 RE -
testcase_03 AC 1 ms
6,940 KB
testcase_04 RE -
testcase_05 WA -
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 RE -
testcase_25 WA -
testcase_26 AC 6 ms
6,940 KB
testcase_27 AC 6 ms
6,944 KB
testcase_28 RE -
testcase_29 AC 6 ms
6,944 KB
testcase_30 AC 6 ms
6,944 KB
testcase_31 WA -
testcase_32 RE -
testcase_33 AC 6 ms
6,940 KB
testcase_34 WA -
testcase_35 AC 7 ms
6,944 KB
testcase_36 AC 7 ms
6,940 KB
testcase_37 AC 8 ms
6,940 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 RE -
testcase_41 AC 7 ms
6,944 KB
testcase_42 AC 6 ms
6,944 KB
testcase_43 AC 5 ms
6,944 KB
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::{input, marker::Usize1};

fn main() {
    input! {
        n:usize,
        s:Usize1,
        t:Usize1,
        a:[usize;n],
    }

    let ans = if n % 2 != 0 {
        let mut point = [0, 0];
        for i in 0..n {
            match f(s, t, i, n) {
                0 | 2 => point[0] += a[i],
                _ => point[1] += a[i],
            }

            // println!("{:?}",point);
        }

        point[0] as i64 - point[1] as i64
    } else {
        let mut point = [0, 0];
        let mut tmp = vec![];
        for i in 0..n {
            match f(s, t, i, n) {
                0 => point[0] += a[i],
                1 => point[1] += a[i],
                _ => tmp.push(a[i]),
            }

            // println!("{:?}",point);
        }

        let (add_s, add_t) = if tmp.is_empty() {
            (0, 0)
        } else {
            (tmp[0].max(tmp[1]), tmp[0].min(tmp[1]))
        };

        (point[0] + add_s) as i64 - (point[1] + add_t) as i64
    };

    println!("{}", ans);
}

fn f(s: usize, t: usize, p: usize, n: usize) -> usize {
    let d_s = s.abs_diff(p).min(s + n - p);
    let d_t = t.abs_diff(p).min(t + n - p);
    if d_s < d_t {
        0
    } else if d_t < d_s {
        1
    } else {
        2
    }
}
0