結果

問題 No.2957 Combo Deck Builder
ユーザー 37kt37kt
提出日時 2024-11-20 12:54:43
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 62 ms / 1,000 ms
コード長 1,092 bytes
コンパイル時間 12,845 ms
コンパイル使用メモリ 403,992 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-11-20 12:55:01
合計ジャッジ時間 16,544 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 58 ms
10,536 KB
testcase_07 AC 58 ms
10,544 KB
testcase_08 AC 58 ms
10,424 KB
testcase_09 AC 62 ms
10,640 KB
testcase_10 AC 61 ms
10,240 KB
testcase_11 AC 58 ms
10,496 KB
testcase_12 AC 57 ms
10,496 KB
testcase_13 AC 59 ms
10,368 KB
testcase_14 AC 49 ms
10,240 KB
testcase_15 AC 52 ms
10,364 KB
testcase_16 AC 51 ms
10,368 KB
testcase_17 AC 51 ms
10,368 KB
testcase_18 AC 53 ms
10,344 KB
testcase_19 AC 54 ms
10,496 KB
testcase_20 AC 52 ms
10,324 KB
testcase_21 AC 50 ms
10,484 KB
testcase_22 AC 52 ms
10,352 KB
testcase_23 AC 51 ms
10,356 KB
testcase_24 AC 52 ms
10,112 KB
testcase_25 AC 51 ms
10,352 KB
testcase_26 AC 51 ms
10,112 KB
testcase_27 AC 53 ms
10,240 KB
testcase_28 AC 51 ms
10,160 KB
testcase_29 AC 53 ms
10,112 KB
testcase_30 AC 30 ms
8,476 KB
testcase_31 AC 25 ms
6,820 KB
testcase_32 AC 50 ms
10,880 KB
testcase_33 AC 53 ms
11,776 KB
testcase_34 AC 46 ms
10,112 KB
testcase_35 AC 46 ms
10,240 KB
testcase_36 AC 1 ms
6,816 KB
testcase_37 AC 1 ms
6,816 KB
testcase_38 AC 1 ms
6,820 KB
testcase_39 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use proconio::{
    input,
    marker::{Bytes, Chars, Usize1},
};
use std::collections::BinaryHeap;

fn main() {
    input! {
        n: usize,
    }
    let mut base = 0;
    let mut vl = vec![];
    let mut vr = vec![];
    for _ in 0..n {
        input! {
            c: usize,
            x: usize,
            y: usize,
        }
        if x >= y {
            base += y;
            if c < n {
                vr.push((n - c, x - y));
            }
        } else {
            base += x;
            if c > 0 {
                vl.push((c, y - x));
            }
        }
    }
    vl.sort_unstable();
    vr.sort_unstable();
    // vl.reverse();
    // vr.reverse();
    let mut res = 0;
    for mut v in [vl, vr] {
        let mut sum = 0;
        let mut pq = BinaryHeap::new();
        for d in (1..=v.len()).rev() {
            while v.len() > 0 && v.last().unwrap().0 >= d {
                pq.push(v.pop().unwrap().1);
            }
            sum += pq.pop().unwrap_or_default();
        }
        res += sum;
    }
    println!("{}", base + res);
}
0