結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー phsplsphspls
提出日時 2023-01-12 22:20:44
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 128 ms / 4,000 ms
コード長 1,078 bytes
コンパイル時間 12,368 ms
コンパイル使用メモリ 397,008 KB
実行使用メモリ 31,244 KB
最終ジャッジ日時 2024-06-06 03:44:31
合計ジャッジ時間 17,109 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
29,856 KB
testcase_01 AC 101 ms
30,640 KB
testcase_02 AC 57 ms
19,568 KB
testcase_03 AC 77 ms
12,580 KB
testcase_04 AC 77 ms
13,348 KB
testcase_05 AC 73 ms
20,980 KB
testcase_06 AC 128 ms
31,244 KB
testcase_07 AC 73 ms
30,388 KB
testcase_08 AC 60 ms
22,512 KB
testcase_09 AC 64 ms
13,312 KB
testcase_10 AC 70 ms
11,392 KB
testcase_11 AC 88 ms
11,520 KB
testcase_12 AC 80 ms
11,392 KB
testcase_13 AC 47 ms
11,392 KB
testcase_14 AC 63 ms
11,392 KB
testcase_15 AC 38 ms
11,392 KB
testcase_16 AC 100 ms
11,392 KB
testcase_17 AC 93 ms
11,520 KB
testcase_18 AC 97 ms
11,520 KB
testcase_19 AC 46 ms
11,392 KB
testcase_20 AC 53 ms
11,392 KB
testcase_21 AC 50 ms
11,392 KB
testcase_22 AC 84 ms
11,392 KB
testcase_23 AC 64 ms
11,392 KB
testcase_24 AC 44 ms
11,520 KB
testcase_25 AC 74 ms
11,392 KB
testcase_26 AC 56 ms
11,520 KB
testcase_27 AC 75 ms
11,520 KB
testcase_28 AC 43 ms
11,388 KB
testcase_29 AC 82 ms
11,392 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 0 ms
5,376 KB
testcase_32 AC 95 ms
11,392 KB
testcase_33 AC 97 ms
11,520 KB
testcase_34 AC 51 ms
12,832 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 1 ms
5,376 KB
testcase_39 AC 1 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 6 ms
5,376 KB
testcase_42 AC 6 ms
5,376 KB
testcase_43 AC 5 ms
5,376 KB
testcase_44 AC 6 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 18 ms
5,376 KB
testcase_47 AC 17 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `u`
  --> src/main.rs:23:11
   |
23 |     for (&u, btree) in mapping.iter() {
   |           ^ help: if this is intentional, prefix it with an underscore: `_u`
   |
   = note: `#[warn(unused_variables)]` on by default

ソースコード

diff #

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


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])
        })
        .collect::<Vec<_>>();

    let mut mapping = HashMap::new();
    for (i, &(s, p, u)) in teams.iter().enumerate() {
        mapping.entry(u).or_insert(BTreeSet::new()).insert((s, Reverse(p), i));
    }
    let mut pque = BinaryHeap::new();
    for (&u, btree) in mapping.iter() {
        for (i, &(s, revp, idx)) in btree.iter().rev().enumerate() {
            pque.push((s, Reverse(i), revp, idx));
        }
    }
    for _ in 0..k {
        println!("{}", pque.pop().unwrap().3);
    }
}
0