結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー phsplsphspls
提出日時 2022-09-29 23:46:54
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 339 ms / 3,000 ms
コード長 1,255 bytes
コンパイル時間 11,077 ms
コンパイル使用メモリ 401,660 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-02 02:17:37
合計ジャッジ時間 19,057 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,812 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 232 ms
6,940 KB
testcase_05 AC 319 ms
6,940 KB
testcase_06 AC 181 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 42 ms
6,944 KB
testcase_09 AC 47 ms
6,944 KB
testcase_10 AC 124 ms
6,940 KB
testcase_11 AC 72 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 151 ms
6,940 KB
testcase_14 AC 189 ms
6,940 KB
testcase_15 AC 155 ms
6,940 KB
testcase_16 AC 155 ms
6,940 KB
testcase_17 AC 81 ms
6,940 KB
testcase_18 AC 174 ms
6,944 KB
testcase_19 AC 21 ms
6,940 KB
testcase_20 AC 25 ms
6,940 KB
testcase_21 AC 76 ms
6,940 KB
testcase_22 AC 148 ms
6,940 KB
testcase_23 AC 242 ms
6,944 KB
testcase_24 AC 301 ms
6,944 KB
testcase_25 AC 319 ms
6,944 KB
testcase_26 AC 269 ms
6,944 KB
testcase_27 AC 333 ms
6,940 KB
testcase_28 AC 285 ms
6,940 KB
testcase_29 AC 339 ms
6,940 KB
testcase_30 AC 266 ms
6,940 KB
testcase_31 AC 278 ms
6,940 KB
testcase_32 AC 333 ms
6,944 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 1 ms
6,940 KB
testcase_35 AC 1 ms
6,944 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 AC 1 ms
6,944 KB
testcase_38 AC 1 ms
6,940 KB
testcase_39 AC 1 ms
6,940 KB
testcase_40 AC 1 ms
6,940 KB
testcase_41 AC 1 ms
6,944 KB
testcase_42 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `n`
 --> src/main.rs:8:9
  |
8 |     let n = nabxy[0];
  |         ^ help: if this is intentional, prefix it with an underscore: `_n`
  |
  = note: `#[warn(unused_variables)]` on by default

ソースコード

diff #

use std::collections::BinaryHeap;


fn main() {
    let mut nabxy = String::new();
    std::io::stdin().read_line(&mut nabxy).ok();
    let nabxy: Vec<usize> = nabxy.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nabxy[0];
    let a = nabxy[1];
    let b = nabxy[2];
    let x = nabxy[3];
    let y = nabxy[4];
    let mut h = String::new();
    std::io::stdin().read_line(&mut h).ok();
    let h: Vec<usize> = h.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();

    let mut upper = 1usize << 60;
    let mut lower = 0usize;
    while upper > lower {
        let middle = (upper + lower) / 2;
        let h = h.iter().map(|&v| if v > middle { v - middle } else { 0 }).collect::<Vec<_>>();
        let mut pque = BinaryHeap::new();
        for &v in h.iter() { if v > 0 { pque.push(v); }}
        let mut cnt = 0usize;
        while cnt < a && !pque.is_empty() {
            cnt += 1;
            let val = pque.pop().unwrap();
            if val > x { pque.push(val - x); }
        }
        let summary = pque.iter().sum::<usize>();
        let flg = b * y >= summary;
        if !flg {
            lower = middle + 1;
        } else {
            upper = middle;
        }
    }
    println!("{}", upper);
}
0