結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー phsplsphspls
提出日時 2023-01-14 03:24:09
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 116 ms / 4,000 ms
コード長 1,255 bytes
コンパイル時間 12,737 ms
コンパイル使用メモリ 390,668 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-06-07 02:51:17
合計ジャッジ時間 18,478 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
12,544 KB
testcase_01 AC 80 ms
12,672 KB
testcase_02 AC 42 ms
11,520 KB
testcase_03 AC 78 ms
11,136 KB
testcase_04 AC 80 ms
11,392 KB
testcase_05 AC 62 ms
11,648 KB
testcase_06 AC 116 ms
12,672 KB
testcase_07 AC 55 ms
12,544 KB
testcase_08 AC 45 ms
11,904 KB
testcase_09 AC 61 ms
11,392 KB
testcase_10 AC 74 ms
11,136 KB
testcase_11 AC 92 ms
10,880 KB
testcase_12 AC 82 ms
10,920 KB
testcase_13 AC 44 ms
11,136 KB
testcase_14 AC 62 ms
11,052 KB
testcase_15 AC 40 ms
10,652 KB
testcase_16 AC 102 ms
10,880 KB
testcase_17 AC 99 ms
11,136 KB
testcase_18 AC 103 ms
11,264 KB
testcase_19 AC 45 ms
11,136 KB
testcase_20 AC 56 ms
11,136 KB
testcase_21 AC 51 ms
11,136 KB
testcase_22 AC 85 ms
11,008 KB
testcase_23 AC 66 ms
11,264 KB
testcase_24 AC 44 ms
10,880 KB
testcase_25 AC 80 ms
11,000 KB
testcase_26 AC 58 ms
10,880 KB
testcase_27 AC 81 ms
10,752 KB
testcase_28 AC 43 ms
11,392 KB
testcase_29 AC 90 ms
11,136 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 100 ms
11,392 KB
testcase_33 AC 101 ms
10,752 KB
testcase_34 AC 48 ms
11,172 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 5 ms
5,376 KB
testcase_40 AC 3 ms
5,376 KB
testcase_41 AC 9 ms
5,376 KB
testcase_42 AC 9 ms
5,376 KB
testcase_43 AC 7 ms
5,376 KB
testcase_44 AC 8 ms
5,376 KB
testcase_45 AC 5 ms
5,376 KB
testcase_46 AC 18 ms
5,376 KB
testcase_47 AC 21 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


const LIMIT: usize = 1e5 as usize;

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 teams = (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 orders = vec![vec![]; LIMIT];
    for i in 0..n {
        let (_, _, u) = teams[i];
        orders[u].push(i);
    }
    for i in 0..LIMIT {
        orders[i].sort_by_key(|&j| (Reverse(teams[j].0), teams[j].1));
    }
    let mut pque = BinaryHeap::new();
    for v in orders.iter() {
        let limit = v.len();
        for i in 0..limit {
            let team_idx = v[i];
            let (s, p, _) = teams[team_idx];
            pque.push((s, Reverse(i), Reverse(p), team_idx));
        }
    }
    for _ in 0..k {
        let (_, _, _, team_idx) = pque.pop().unwrap();
        println!("{}", team_idx);
    }
}
0