結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー koyoprokoyopro
提出日時 2020-03-27 22:52:08
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 129 ms / 4,000 ms
コード長 1,599 bytes
コンパイル時間 1,316 ms
コンパイル使用メモリ 166,508 KB
実行使用メモリ 22,212 KB
最終ジャッジ日時 2024-06-10 16:44:46
合計ジャッジ時間 7,126 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
20,944 KB
testcase_01 AC 100 ms
20,908 KB
testcase_02 AC 64 ms
21,372 KB
testcase_03 AC 95 ms
21,652 KB
testcase_04 AC 93 ms
21,480 KB
testcase_05 AC 78 ms
21,180 KB
testcase_06 AC 129 ms
20,892 KB
testcase_07 AC 69 ms
20,920 KB
testcase_08 AC 63 ms
20,980 KB
testcase_09 AC 74 ms
21,560 KB
testcase_10 AC 79 ms
20,912 KB
testcase_11 AC 97 ms
20,212 KB
testcase_12 AC 89 ms
20,812 KB
testcase_13 AC 55 ms
21,180 KB
testcase_14 AC 73 ms
20,116 KB
testcase_15 AC 48 ms
19,784 KB
testcase_16 AC 112 ms
20,032 KB
testcase_17 AC 102 ms
21,156 KB
testcase_18 AC 107 ms
21,696 KB
testcase_19 AC 56 ms
21,484 KB
testcase_20 AC 66 ms
21,284 KB
testcase_21 AC 60 ms
21,244 KB
testcase_22 AC 91 ms
20,520 KB
testcase_23 AC 73 ms
20,732 KB
testcase_24 AC 52 ms
20,948 KB
testcase_25 AC 83 ms
20,468 KB
testcase_26 AC 65 ms
19,932 KB
testcase_27 AC 85 ms
19,828 KB
testcase_28 AC 51 ms
21,872 KB
testcase_29 AC 96 ms
19,808 KB
testcase_30 AC 4 ms
6,272 KB
testcase_31 AC 3 ms
6,272 KB
testcase_32 AC 108 ms
22,212 KB
testcase_33 AC 113 ms
20,656 KB
testcase_34 AC 68 ms
21,508 KB
testcase_35 AC 3 ms
6,144 KB
testcase_36 AC 3 ms
6,272 KB
testcase_37 AC 3 ms
6,272 KB
testcase_38 AC 4 ms
6,272 KB
testcase_39 AC 4 ms
6,272 KB
testcase_40 AC 4 ms
6,400 KB
testcase_41 AC 10 ms
7,552 KB
testcase_42 AC 8 ms
7,680 KB
testcase_43 AC 8 ms
7,672 KB
testcase_44 AC 9 ms
7,796 KB
testcase_45 AC 5 ms
6,400 KB
testcase_46 AC 20 ms
7,680 KB
testcase_47 AC 20 ms
7,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define FOR(i, a, b) for(int i=(a);i<(b);i++)
#define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--)
#define REP(i, n) for(int i=0; i<(n); i++)
#define RREP(i, n) for(int i=(n-1); i>=0; i--)
#define REP1(i, n) for(int i=1; i<=(n); i++)
#define RREP1(i, n) for(int i=(n); i>=1; i--)
#define ALL(a) (a).begin(),(a).end()
#define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end());
#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()
#define out(...) printf(__VA_ARGS__)

int dxy[] = {0, 1, 0, -1, 0};

void solve();
signed main()
{
#if DEBUG
    std::ifstream in("input.txt");
    std::cin.rdbuf(in.rdbuf());
#endif
    cin.tie(0);
    ios::sync_with_stdio(false);
    solve();
    return 0;
}

/*================================*/
#if DEBUG
#define SIZE 100
#else
#define SIZE 123450
#endif

int N,K;
struct Team {
    int i,s,r,p,u;
    Team():i(0),s(0),r(0),p(0),u(0){};
    
    bool operator < (const Team &t) const {
        if (s != t.s) return s < t.s;
        if (r != t.r) return r > t.r;
        return p > t.p;
    }
};
vector<Team> U[SIZE];

priority_queue<Team> que;

void solve() {
    cin>>N>>K;
    REP(i,N) {
        auto t = *new Team();
        cin>>t.s>>t.p>>t.u;
        t.i = i;
        U[t.u].push_back(t);
    }
    REP(i,SIZE)if(U[i].size()) {
        sort(ALL(U[i]));
        reverse(ALL(U[i]));
        REP(j,U[i].size()) {
            U[i][j].r = j;
            que.push(U[i][j]);
        }
    }
    while(K--) {
        auto t = que.top();
        que.pop();
        cout << t.i << endl;
    }
}
0