結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー face4face4
提出日時 2018-09-14 12:56:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 171 ms / 4,000 ms
コード長 849 bytes
コンパイル時間 957 ms
コンパイル使用メモリ 87,480 KB
実行使用メモリ 11,456 KB
最終ジャッジ日時 2024-07-04 23:43:48
合計ジャッジ時間 8,069 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
11,120 KB
testcase_01 AC 145 ms
11,164 KB
testcase_02 AC 102 ms
11,008 KB
testcase_03 AC 133 ms
11,016 KB
testcase_04 AC 134 ms
10,996 KB
testcase_05 AC 121 ms
11,016 KB
testcase_06 AC 171 ms
11,200 KB
testcase_07 AC 108 ms
11,028 KB
testcase_08 AC 105 ms
11,012 KB
testcase_09 AC 115 ms
10,960 KB
testcase_10 AC 117 ms
10,732 KB
testcase_11 AC 138 ms
10,392 KB
testcase_12 AC 127 ms
10,872 KB
testcase_13 AC 90 ms
10,896 KB
testcase_14 AC 106 ms
10,716 KB
testcase_15 AC 82 ms
10,312 KB
testcase_16 AC 144 ms
10,628 KB
testcase_17 AC 144 ms
11,004 KB
testcase_18 AC 146 ms
11,000 KB
testcase_19 AC 88 ms
11,000 KB
testcase_20 AC 100 ms
11,032 KB
testcase_21 AC 94 ms
10,852 KB
testcase_22 AC 130 ms
10,668 KB
testcase_23 AC 111 ms
10,864 KB
testcase_24 AC 86 ms
10,712 KB
testcase_25 AC 122 ms
10,736 KB
testcase_26 AC 98 ms
10,536 KB
testcase_27 AC 121 ms
10,484 KB
testcase_28 AC 87 ms
11,008 KB
testcase_29 AC 126 ms
10,728 KB
testcase_30 AC 4 ms
5,760 KB
testcase_31 AC 3 ms
5,632 KB
testcase_32 AC 147 ms
11,456 KB
testcase_33 AC 150 ms
10,688 KB
testcase_34 AC 110 ms
11,012 KB
testcase_35 AC 4 ms
5,632 KB
testcase_36 AC 4 ms
5,760 KB
testcase_37 AC 4 ms
5,888 KB
testcase_38 AC 4 ms
5,760 KB
testcase_39 AC 5 ms
5,888 KB
testcase_40 AC 5 ms
5,888 KB
testcase_41 AC 13 ms
6,284 KB
testcase_42 AC 12 ms
6,276 KB
testcase_43 AC 12 ms
6,240 KB
testcase_44 AC 13 ms
6,236 KB
testcase_45 AC 6 ms
5,760 KB
testcase_46 AC 26 ms
6,328 KB
testcase_47 AC 26 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<queue>
#include<algorithm>
#include<vector>
using namespace std;

int main(){
    int n, k;
    cin >> n >> k;

    int s[n], p[n], u[n];
    for(int i = 0; i < n; i++)  cin >> s[i] >> p[i] >> u[i];

    vector<pair<pair<int,int>,int>> univ[100010];
    for(int i = 0; i < n; i++){
        univ[u[i]].push_back({{s[i],-p[i]},i});
    }

    priority_queue< pair< pair<int,pair<int,int>>, int> > pq;

    for(int u = 0; u <= 100000; u++){
        if(univ[u].size()){
            sort(univ[u].rbegin(), univ[u].rend());
            for(int i = 0; i < univ[u].size(); i++){
                int x = univ[u][i].second;
                pq.push({{s[x], {-i, -p[x]}},x});
            }
        }
    }

    for(int i = 0; i < k; i++){
        auto p = pq.top();  pq.pop();
        cout << p.second << endl;
    }

    return 0;
}
0