結果

問題 No.9 モンスターのレベル上げ
ユーザー ooaiuooaiu
提出日時 2024-11-13 16:45:23
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 234 ms / 5,000 ms
コード長 721 bytes
コンパイル時間 13,700 ms
コンパイル使用メモリ 402,220 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-13 16:45:43
合計ジャッジ時間 17,439 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 234 ms
6,816 KB
testcase_03 AC 183 ms
6,820 KB
testcase_04 AC 89 ms
6,820 KB
testcase_05 AC 60 ms
6,816 KB
testcase_06 AC 21 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 28 ms
6,820 KB
testcase_09 AC 221 ms
6,816 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 187 ms
6,816 KB
testcase_12 AC 222 ms
6,816 KB
testcase_13 AC 143 ms
6,816 KB
testcase_14 AC 225 ms
6,816 KB
testcase_15 AC 209 ms
6,816 KB
testcase_16 AC 4 ms
6,820 KB
testcase_17 AC 125 ms
6,820 KB
testcase_18 AC 103 ms
6,816 KB
testcase_19 AC 3 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::{cmp::Reverse, collections::BinaryHeap};

use proconio::input;

fn main() {
    input! {
        n: usize,
        a: [usize; n],
        b: [usize; n],
    }
    let mut ans = usize::MAX;
    for i in 0..n {
        let mut pq = BinaryHeap::new();
        for j in 0..n {
            pq.push(Reverse((a[j], 0)));
        }
        let mut cur = 0;
        for jj in 0..n {
            let j = (i + jj) % n;
            if let Some(Reverse((mut x, mut y))) = pq.pop() {
                x += b[j]/2;
                y += 1;
                cur = cur.max(y);
                pq.push(Reverse((x, y)));
            }
        }
        if ans > cur {
            ans = cur;
        }
    }
    println!("{}", ans);
}
0