結果

問題 No.2957 Combo Deck Builder
ユーザー 37kt37kt
提出日時 2024-11-20 12:40:13
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,171 bytes
コンパイル時間 13,775 ms
コンパイル使用メモリ 404,208 KB
実行使用メモリ 11,792 KB
最終ジャッジ日時 2024-11-20 12:40:31
合計ジャッジ時間 16,700 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 WA -
testcase_04 AC 1 ms
6,820 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
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 -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 30 ms
8,212 KB
testcase_31 AC 26 ms
6,820 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 48 ms
9,932 KB
testcase_35 AC 48 ms
10,240 KB
testcase_36 WA -
testcase_37 AC 1 ms
6,820 KB
testcase_38 AC 1 ms
6,816 KB
testcase_39 AC 1 ms
6,816 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((c, x - y));
            }
        } else {
            base += x;
            if c != 0 {
                vr.push((n - c, y - x));
            }
        }
    }
    vl.sort_unstable();
    vr.sort_unstable();
    let mut res = 0;
    for mut v in [vl, vr] {
        let mut sum = 0;
        let mut pq = BinaryHeap::new();
        for d in (0..v.len()).rev() {
            while v.len() > 0 && v.last().unwrap().0 >= d {
                if v.last().unwrap().0 == d {
                    pq.push(v.pop().unwrap().1);
                } else {
                    break;
                }
            }
            sum += pq.pop().unwrap_or_default();
        }
        res += sum;
    }
    println!("{}", base + res);
}
0