結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
16,488 KB
testcase_01 AC 84 ms
16,888 KB
testcase_02 AC 47 ms
12,248 KB
testcase_03 AC 73 ms
10,000 KB
testcase_04 AC 78 ms
9,748 KB
testcase_05 AC 60 ms
12,476 KB
testcase_06 AC 112 ms
16,548 KB
testcase_07 AC 54 ms
16,480 KB
testcase_08 AC 45 ms
12,596 KB
testcase_09 AC 58 ms
9,088 KB
testcase_10 AC 66 ms
9,088 KB
testcase_11 AC 82 ms
8,448 KB
testcase_12 AC 76 ms
8,832 KB
testcase_13 AC 41 ms
8,832 KB
testcase_14 AC 62 ms
8,704 KB
testcase_15 AC 37 ms
8,340 KB
testcase_16 AC 90 ms
8,692 KB
testcase_17 AC 90 ms
9,020 KB
testcase_18 AC 95 ms
8,832 KB
testcase_19 AC 43 ms
8,832 KB
testcase_20 AC 54 ms
8,960 KB
testcase_21 AC 48 ms
8,832 KB
testcase_22 AC 81 ms
8,832 KB
testcase_23 AC 60 ms
8,704 KB
testcase_24 AC 41 ms
8,668 KB
testcase_25 AC 71 ms
8,704 KB
testcase_26 AC 55 ms
8,576 KB
testcase_27 AC 75 ms
8,448 KB
testcase_28 AC 40 ms
8,960 KB
testcase_29 AC 81 ms
8,776 KB
testcase_30 AC 0 ms
6,940 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 88 ms
8,980 KB
testcase_33 AC 93 ms
8,576 KB
testcase_34 AC 47 ms
9,616 KB
testcase_35 AC 0 ms
6,940 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 1 ms
6,944 KB
testcase_38 AC 1 ms
6,940 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 1 ms
6,944 KB
testcase_41 AC 5 ms
6,940 KB
testcase_42 AC 6 ms
6,944 KB
testcase_43 AC 5 ms
6,944 KB
testcase_44 AC 6 ms
6,940 KB
testcase_45 AC 2 ms
6,940 KB
testcase_46 AC 16 ms
6,944 KB
testcase_47 AC 16 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `s`
  --> src/main.rs:20:14
   |
20 |         let (s, p, u) = teams[i];
   |              ^ help: if this is intentional, prefix it with an underscore: `_s`
   |
   = note: `#[warn(unused_variables)]` on by default

warning: unused variable: `p`
  --> src/main.rs:20:17
   |
20 |         let (s, p, u) = teams[i];
   |                 ^ help: if this is intentional, prefix it with an underscore: `_p`

warning: unused variable: `key`
  --> src/main.rs:24:11
   |
24 |     for (&key, v) in mapping.iter_mut() {
   |           ^^^ help: if this is intentional, prefix it with an underscore: `_key`

ソースコード

diff #

use std::{collections::{HashMap, BinaryHeap}, 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 in 0..n {
        let (s, p, u) = teams[i];
        mapping.entry(u).or_insert(vec![]).push(i);
    }
    let mut pque = BinaryHeap::new();
    for (&key, v) in mapping.iter_mut() {
        v.sort_by_key(|&i| (Reverse(teams[i].0), teams[i].1));
        for i in 0..v.len() {
            let tidx = v[i];
            let (s, p, _) = teams[tidx];
            pque.push((s, Reverse(i), Reverse(p), tidx));
        }
    }
    for _ in 0..k {
        println!("{}", pque.pop().unwrap().3);
    }
}
0