結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー phsplsphspls
提出日時 2023-02-10 01:13:47
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 96 ms / 4,000 ms
コード長 1,088 bytes
コンパイル時間 14,922 ms
コンパイル使用メモリ 402,900 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-07 01:07:37
合計ジャッジ時間 20,357 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,544 KB
testcase_01 AC 66 ms
12,672 KB
testcase_02 AC 37 ms
11,648 KB
testcase_03 AC 83 ms
11,136 KB
testcase_04 AC 69 ms
11,264 KB
testcase_05 AC 50 ms
11,776 KB
testcase_06 AC 90 ms
12,672 KB
testcase_07 AC 42 ms
12,416 KB
testcase_08 AC 37 ms
11,904 KB
testcase_09 AC 50 ms
11,264 KB
testcase_10 AC 62 ms
11,136 KB
testcase_11 AC 84 ms
10,880 KB
testcase_12 AC 80 ms
11,136 KB
testcase_13 AC 37 ms
11,264 KB
testcase_14 AC 55 ms
11,008 KB
testcase_15 AC 34 ms
10,752 KB
testcase_16 AC 87 ms
10,880 KB
testcase_17 AC 83 ms
11,252 KB
testcase_18 AC 96 ms
11,392 KB
testcase_19 AC 41 ms
11,264 KB
testcase_20 AC 49 ms
11,136 KB
testcase_21 AC 43 ms
11,136 KB
testcase_22 AC 76 ms
11,008 KB
testcase_23 AC 55 ms
11,136 KB
testcase_24 AC 36 ms
11,008 KB
testcase_25 AC 66 ms
11,008 KB
testcase_26 AC 50 ms
10,880 KB
testcase_27 AC 70 ms
10,752 KB
testcase_28 AC 36 ms
11,136 KB
testcase_29 AC 75 ms
11,008 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 81 ms
11,392 KB
testcase_33 AC 86 ms
10,880 KB
testcase_34 AC 42 ms
11,264 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 4 ms
5,376 KB
testcase_38 AC 3 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 4 ms
5,376 KB
testcase_41 AC 7 ms
5,376 KB
testcase_42 AC 7 ms
5,376 KB
testcase_43 AC 7 ms
5,376 KB
testcase_44 AC 7 ms
5,376 KB
testcase_45 AC 5 ms
5,376 KB
testcase_46 AC 19 ms
5,376 KB
testcase_47 AC 16 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


fn main() {
    let mut nk = String::new();
    std::io::stdin().read_line(&mut nk).ok();
    let nk: Vec<usize> = nk.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nk[0];
    let k = nk[1];
    let items = (0..n).map(|_| {
            let mut temp = String::new();
            std::io::stdin().read_line(&mut temp).ok();
            let temp: Vec<usize> = temp.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
            (temp[0], temp[1], temp[2]-1)
        })
        .collect::<Vec<_>>();

    let mut univs = vec![vec![]; 100000];
    for i in 0..n {
        univs[items[i].2].push(i);
    }
    let mut pque = BinaryHeap::new();
    for i in 0..100000 {
        univs[i].sort_by_key(|&j| (Reverse(items[j].0), items[j].1));
        for j in 0..univs[i].len() {
            let idx = univs[i][j];
            let (s, p, _) = items[idx];
            pque.push((s, Reverse(j), Reverse(p), idx));
        }
    }
    for _ in 0..k {
        println!("{}", pque.pop().unwrap().3);
    }
}
0