結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー beetbeet
提出日時 2018-12-03 16:29:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 193 ms / 4,000 ms
コード長 1,128 bytes
コンパイル時間 2,292 ms
コンパイル使用メモリ 218,080 KB
実行使用メモリ 14,868 KB
最終ジャッジ日時 2024-07-01 05:39:18
合計ジャッジ時間 9,945 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 175 ms
12,056 KB
testcase_01 AC 164 ms
11,912 KB
testcase_02 AC 114 ms
11,776 KB
testcase_03 AC 146 ms
11,616 KB
testcase_04 AC 149 ms
11,712 KB
testcase_05 AC 133 ms
12,052 KB
testcase_06 AC 193 ms
14,868 KB
testcase_07 AC 120 ms
12,064 KB
testcase_08 AC 114 ms
13,940 KB
testcase_09 AC 125 ms
13,364 KB
testcase_10 AC 126 ms
12,964 KB
testcase_11 AC 142 ms
12,400 KB
testcase_12 AC 133 ms
11,492 KB
testcase_13 AC 91 ms
13,172 KB
testcase_14 AC 107 ms
11,572 KB
testcase_15 AC 79 ms
13,196 KB
testcase_16 AC 150 ms
12,600 KB
testcase_17 AC 150 ms
13,072 KB
testcase_18 AC 153 ms
13,088 KB
testcase_19 AC 92 ms
13,300 KB
testcase_20 AC 103 ms
11,516 KB
testcase_21 AC 100 ms
12,852 KB
testcase_22 AC 135 ms
12,676 KB
testcase_23 AC 116 ms
13,052 KB
testcase_24 AC 93 ms
12,716 KB
testcase_25 AC 131 ms
12,624 KB
testcase_26 AC 100 ms
13,104 KB
testcase_27 AC 126 ms
12,384 KB
testcase_28 AC 91 ms
12,948 KB
testcase_29 AC 135 ms
12,816 KB
testcase_30 AC 11 ms
7,676 KB
testcase_31 AC 11 ms
7,748 KB
testcase_32 AC 151 ms
11,472 KB
testcase_33 AC 163 ms
12,684 KB
testcase_34 AC 114 ms
13,432 KB
testcase_35 AC 10 ms
7,700 KB
testcase_36 AC 12 ms
7,664 KB
testcase_37 AC 10 ms
7,740 KB
testcase_38 AC 11 ms
7,688 KB
testcase_39 AC 12 ms
7,764 KB
testcase_40 AC 14 ms
7,804 KB
testcase_41 AC 20 ms
8,144 KB
testcase_42 AC 19 ms
8,280 KB
testcase_43 AC 18 ms
8,416 KB
testcase_44 AC 21 ms
8,180 KB
testcase_45 AC 13 ms
7,808 KB
testcase_46 AC 35 ms
8,136 KB
testcase_47 AC 34 ms
8,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
signed main(){
  Int n,k;
  cin>>n>>k;
  vector<Int> s(n),p(n),u(n);
  for(Int i=0;i<n;i++) cin>>s[i]>>p[i]>>u[i];

  vector<vector<Int> > G(11);
  for(Int i=0;i<n;i++) G[s[i]].emplace_back(i);

  const Int MAX = 114514;
  vector<Int> cnt(MAX,0);
  for(Int x=10;x>=0;x--){
    using T = tuple<Int, Int, Int>;
    using PQ = priority_queue<T, vector<T>, greater<T> >;
    vector<PQ> pqs(MAX);
    PQ all;
    for(Int i:G[x])
      pqs[u[i]].emplace(cnt[u[i]],p[i],i);
    
    for(PQ &pq: pqs){
      if(pq.empty()) continue;
      all.emplace(pq.top());
      pq.pop();
    }
    while(k&&!all.empty()){
      k--;
      Int i;
      tie(ignore,ignore,i)=all.top();all.pop();
      cout<<i<<endl;
      cnt[u[i]]++;
      auto &pq=pqs[u[i]];
      if(pq.empty()) continue;
      tie(ignore,ignore,i)=pq.top();pq.pop();
      all.emplace(cnt[u[i]],p[i],i);
    }
  }
  
  return 0;
}
0