結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー tossytossy
提出日時 2016-10-14 23:03:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,316 bytes
コンパイル時間 1,044 ms
コンパイル使用メモリ 100,060 KB
実行使用メモリ 19,744 KB
最終ジャッジ日時 2024-11-22 09:33:58
合計ジャッジ時間 45,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
14,976 KB
testcase_01 AC 40 ms
19,744 KB
testcase_02 AC 36 ms
15,104 KB
testcase_03 AC 42 ms
19,656 KB
testcase_04 AC 43 ms
14,940 KB
testcase_05 AC 39 ms
9,596 KB
testcase_06 AC 53 ms
10,676 KB
testcase_07 AC 38 ms
9,552 KB
testcase_08 AC 37 ms
10,804 KB
testcase_09 AC 53 ms
10,804 KB
testcase_10 AC 1,635 ms
10,800 KB
testcase_11 AC 2,814 ms
10,680 KB
testcase_12 AC 246 ms
9,560 KB
testcase_13 AC 803 ms
10,800 KB
testcase_14 AC 468 ms
9,600 KB
testcase_15 AC 209 ms
10,740 KB
testcase_16 TLE -
testcase_17 AC 2,050 ms
10,804 KB
testcase_18 AC 3,615 ms
10,804 KB
testcase_19 AC 817 ms
10,724 KB
testcase_20 AC 123 ms
9,592 KB
testcase_21 AC 642 ms
10,800 KB
testcase_22 AC 2,299 ms
10,672 KB
testcase_23 AC 1,421 ms
10,804 KB
testcase_24 AC 333 ms
10,808 KB
testcase_25 AC 2,166 ms
10,804 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 307 ms
10,676 KB
testcase_29 TLE -
testcase_30 AC 4 ms
7,296 KB
testcase_31 AC 5 ms
7,408 KB
testcase_32 AC 103 ms
9,536 KB
testcase_33 AC 448 ms
10,804 KB
testcase_34 AC 39 ms
10,672 KB
testcase_35 AC 5 ms
7,364 KB
testcase_36 AC 5 ms
7,296 KB
testcase_37 AC 5 ms
7,288 KB
testcase_38 AC 4 ms
7,428 KB
testcase_39 AC 4 ms
7,316 KB
testcase_40 AC 4 ms
7,304 KB
testcase_41 AC 11 ms
7,552 KB
testcase_42 AC 101 ms
7,860 KB
testcase_43 AC 487 ms
7,764 KB
testcase_44 AC 48 ms
7,424 KB
testcase_45 AC 6 ms
7,424 KB
testcase_46 AC 13 ms
7,488 KB
testcase_47 AC 35 ms
13,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <string>
#include <cmath>
#include <cassert>
#include <iostream>
#include <algorithm>
#include <stack>
#include <queue>
#include <vector>
#include <set>
#include <map>
#include <bitset>
using namespace std;

#define repl(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define rep(i,n) repl(i,0,n)
#define mp(a,b) make_pair(a,b)
#define pb(a) push_back(a)
#define all(x) (x).begin(),(x).end()
#define dbg(x) cout<<#x"="<<x<<endl
#define fi first
#define se second

#define INF 2147483600

int main(){
  int n,k;
  cin>>n>>k;
  vector<vector<int> > solves(11, vector<int>());
  vector<int> s(n), p(n), u(n);

  rep(i,n){
    scanf("%d %d %d", &s[i], &p[i], &u[i]);
    u[i]--;
    solves[s[i]].pb(i);
  }

  vector<int> solved(1000000, 0);

  int cnt=0;

  for(int sol=10; sol>=0; sol--){
    typedef pair<long, int> P;
    #define LLL 10000000
    priority_queue<P, vector<P>, greater<P> > pq;
    for(int i : solves[sol]){
      pq.push(mp((long)solved[u[i]]*LLL + p[i], i));
    }
    while(!pq.empty() && cnt<k){
      auto pp = pq.top(); pq.pop();
      int i = pp.se;
      if(pp.fi/LLL < solved[u[i]]){
        pq.push(mp((long)solved[u[i]]*LLL + p[i], i));
        continue;
      }
      printf("%d\n", i);
      solved[u[i]]++;
      cnt++;
    }

  }

  return 0;
}
0