結果

問題 No.1071 ベホマラー
ユーザー tonyu0tonyu0
提出日時 2020-06-05 23:31:16
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 1,205 bytes
コンパイル時間 758 ms
コンパイル使用メモリ 147,440 KB
実行使用メモリ 4,672 KB
最終ジャッジ日時 2023-08-22 18:07:59
合計ジャッジ時間 2,787 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp::*;
use std::io::*;

fn check(v: u64, a: &Vec<u64>, x: u64, y: u64, k: u64) -> u64 {
    let mut res = v * y;
    for i in 0..a.len() {
        let d = a[i].saturating_sub(v * k);
        if d > 1 {
            res += (d - 1 + k - 1) / k * x;
        }
    }
    res
}

fn main() {
    let mut s: String = String::new();
    stdin().read_to_string(&mut s).ok();
    let mut itr = s.trim().split_whitespace();
    let n: usize = itr.next().unwrap().parse().unwrap();
    let k: u64 = itr.next().unwrap().parse().unwrap();
    let x: u64 = itr.next().unwrap().parse().unwrap();
    let y: u64 = itr.next().unwrap().parse().unwrap();
    let a: Vec<u64> = (0..n)
        .map(|_| itr.next().unwrap().parse().unwrap())
        .collect();

    let mut r = 1u64 << 30;
    let mut l = 0;
    while r - l > 10 {
        let llr = (l + l + r) / 3;
        let lrr = (l + r + r) / 3;
        let vl = check(llr, &a, x, y, k);
        let vr = check(lrr, &a, x, y, k);
        if vl > vr {
            l = llr;
        } else {
            r = lrr;
        }
    }

    let mut ans = 1u64 << 30;
    for i in l..l + 10 {
        ans = min(ans, check(i, &a, x, y, k));
    }
    println!("{}", ans);
}
0