結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー ei1333333ei1333333
提出日時 2016-10-14 22:44:52
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 284 ms / 4,000 ms
コード長 883 bytes
コンパイル時間 1,824 ms
コンパイル使用メモリ 187,108 KB
実行使用メモリ 74,624 KB
最終ジャッジ日時 2024-11-22 07:55:55
合計ジャッジ時間 11,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
74,240 KB
testcase_01 AC 240 ms
74,496 KB
testcase_02 AC 183 ms
72,704 KB
testcase_03 AC 199 ms
71,424 KB
testcase_04 AC 200 ms
71,296 KB
testcase_05 AC 202 ms
72,960 KB
testcase_06 AC 284 ms
74,624 KB
testcase_07 AC 211 ms
74,240 KB
testcase_08 AC 186 ms
73,344 KB
testcase_09 AC 176 ms
70,912 KB
testcase_10 AC 181 ms
71,936 KB
testcase_11 AC 201 ms
71,808 KB
testcase_12 AC 193 ms
71,936 KB
testcase_13 AC 154 ms
71,936 KB
testcase_14 AC 173 ms
71,808 KB
testcase_15 AC 144 ms
71,808 KB
testcase_16 AC 209 ms
71,808 KB
testcase_17 AC 208 ms
71,808 KB
testcase_18 AC 211 ms
71,808 KB
testcase_19 AC 154 ms
71,808 KB
testcase_20 AC 165 ms
71,808 KB
testcase_21 AC 162 ms
71,680 KB
testcase_22 AC 193 ms
71,808 KB
testcase_23 AC 173 ms
71,808 KB
testcase_24 AC 152 ms
71,808 KB
testcase_25 AC 185 ms
71,808 KB
testcase_26 AC 162 ms
71,808 KB
testcase_27 AC 186 ms
71,808 KB
testcase_28 AC 151 ms
71,936 KB
testcase_29 AC 193 ms
71,936 KB
testcase_30 AC 64 ms
70,528 KB
testcase_31 AC 63 ms
70,528 KB
testcase_32 AC 209 ms
71,680 KB
testcase_33 AC 221 ms
71,808 KB
testcase_34 AC 174 ms
71,552 KB
testcase_35 AC 64 ms
70,656 KB
testcase_36 AC 64 ms
70,528 KB
testcase_37 AC 63 ms
70,656 KB
testcase_38 AC 63 ms
70,528 KB
testcase_39 AC 64 ms
70,656 KB
testcase_40 AC 63 ms
70,528 KB
testcase_41 AC 73 ms
70,656 KB
testcase_42 AC 73 ms
70,784 KB
testcase_43 AC 80 ms
70,784 KB
testcase_44 AC 80 ms
70,656 KB
testcase_45 AC 66 ms
70,656 KB
testcase_46 AC 94 ms
70,656 KB
testcase_47 AC 93 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main()
{
  int N, K;
  int S[100000], P[100000], U[100000];
  deque< tuple< int, int, int > > team[100001];
  int ct[100001] = {};

  cin >> N >> K;
  for(int i = 0; i < N; i++) {
    cin >> S[i] >> P[i] >> U[i];
    team[U[i]].emplace_back(-S[i], P[i], i);
  }

  set< tuple< int, int, int, int, int > > pp;
  for(int i = 0; i < 100001; i++) {
    if(team[i].empty()) continue;
    sort(begin(team[i]), end(team[i]));
    int a, b, c;
    tie(a, b, c) = team[i][0];
    team[i].pop_front();
    pp.emplace(a, ct[i]++, b, i, c);
  }
  for(int i = 0; i < K; i++) {
    int a, b, c, d, e;
    tie(a, b, c, d, e) = *pp.begin();
    cout << e << endl;
    pp.erase(pp.begin());
    if(!team[d].empty()) {
      int x, y, z;
      tie(x, y, z) = team[d][0];
      team[d].pop_front();
      pp.emplace(x, ct[d]++, y, d, z);
    }
  }
}
0