結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー kimiyukikimiyuki
提出日時 2016-10-14 23:35:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 203 ms / 4,000 ms
コード長 1,171 bytes
コンパイル時間 1,263 ms
コンパイル使用メモリ 95,120 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-11-22 06:30:16
合計ジャッジ時間 7,629 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 196 ms
11,520 KB
testcase_01 AC 174 ms
11,904 KB
testcase_02 AC 135 ms
8,832 KB
testcase_03 AC 157 ms
7,168 KB
testcase_04 AC 150 ms
6,912 KB
testcase_05 AC 150 ms
9,472 KB
testcase_06 AC 203 ms
12,032 KB
testcase_07 AC 152 ms
11,648 KB
testcase_08 AC 136 ms
9,856 KB
testcase_09 AC 128 ms
6,784 KB
testcase_10 AC 122 ms
5,888 KB
testcase_11 AC 140 ms
5,888 KB
testcase_12 AC 133 ms
5,888 KB
testcase_13 AC 102 ms
6,016 KB
testcase_14 AC 119 ms
5,760 KB
testcase_15 AC 96 ms
5,760 KB
testcase_16 AC 151 ms
5,888 KB
testcase_17 AC 145 ms
5,888 KB
testcase_18 AC 148 ms
6,016 KB
testcase_19 AC 101 ms
5,888 KB
testcase_20 AC 112 ms
6,016 KB
testcase_21 AC 108 ms
6,016 KB
testcase_22 AC 135 ms
5,760 KB
testcase_23 AC 115 ms
5,888 KB
testcase_24 AC 104 ms
5,888 KB
testcase_25 AC 132 ms
5,760 KB
testcase_26 AC 111 ms
5,888 KB
testcase_27 AC 129 ms
5,632 KB
testcase_28 AC 102 ms
6,016 KB
testcase_29 AC 138 ms
5,888 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 151 ms
6,016 KB
testcase_33 AC 161 ms
5,760 KB
testcase_34 AC 125 ms
7,296 KB
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 3 ms
5,248 KB
testcase_40 AC 4 ms
5,248 KB
testcase_41 AC 12 ms
5,248 KB
testcase_42 AC 12 ms
5,248 KB
testcase_43 AC 11 ms
5,248 KB
testcase_44 AC 12 ms
5,248 KB
testcase_45 AC 4 ms
5,248 KB
testcase_46 AC 23 ms
5,248 KB
testcase_47 AC 24 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#define repeat(i,n) for (int i = 0; (i) < (n); ++(i))
#define whole(f,x,...) ([&](decltype((x)) y) { return (f)(begin(y), end(y), ## __VA_ARGS__); })(x)
using namespace std;
struct team_t {
    int solved, penalty, university;
    int index, rank_in_university;
};
bool operator < (team_t const & a, team_t const & b) {
    return make_tuple(- a.solved, a.rank_in_university, a.penalty, a.index, a.university)
        <  make_tuple(- b.solved, b.rank_in_university, b.penalty, a.index, b.university); // reversed
}
int main() {
    int n, k; cin >> n >> k;
    vector<team_t> team(n);
    repeat (i,n) {
        cin >> team[i].solved >> team[i].penalty >> team[i].university;
        team[i].index = i;
    }
    map<int,vector<int> > univ;
    repeat (i,n) univ[team[i].university].push_back(i);
    for (auto & it : univ) {
        vector<int> & ix = it.second;
        whole(sort, ix, [&](int i, int j) { return team[i] < team[j]; });
        repeat (j, ix.size()) team[ix[j]].rank_in_university = j;
    }
    whole(sort, team);
    repeat (i,k) cout << team[i].index << endl;
    return 0;
}
0