結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー finefine
提出日時 2016-10-14 23:15:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 738 bytes
コンパイル時間 1,771 ms
コンパイル使用メモリ 172,296 KB
実行使用メモリ 15,872 KB
最終ジャッジ日時 2024-11-22 10:13:59
合計ジャッジ時間 176,225 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,120 ms
10,240 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 2 ms
10,496 KB
testcase_31 AC 2 ms
10,240 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 12 ms
5,248 KB
testcase_40 AC 10 ms
5,248 KB
testcase_41 AC 491 ms
5,248 KB
testcase_42 AC 630 ms
5,248 KB
testcase_43 AC 317 ms
5,248 KB
testcase_44 AC 285 ms
5,248 KB
testcase_45 AC 21 ms
5,248 KB
testcase_46 AC 2,044 ms
5,248 KB
testcase_47 AC 2,374 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int used[100001];

struct team {
    int id;
    int s;
    int p;
    int u;
    bool operator<(const team &t) const {
        if (s != t.s) return s < t.s;
        if (used[u] != used[t.u]) return used[u] > used[t.u];
        return p > t.p;
    }
};

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n, k;
    scanf("%d %d", &n, &k);
    vector<team> t(n);
    for (int i = 0; i < n; i++) {
        t[i].id = i;
        scanf("%d %d %d", &t[i].s, &t[i].p, &t[i].u);
    }
    for (int i = 0; i < k; i++) {
        sort(t.begin(), t.end());
        team tmp = t.back();
        used[tmp.u]++;
        printf("%d\n",tmp.id);
        t.pop_back();
    }
    return 0;
}
0