結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー vjudge1vjudge1
提出日時 2024-12-22 13:55:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 69 ms / 4,000 ms
コード長 1,005 bytes
コンパイル時間 750 ms
コンパイル使用メモリ 65,868 KB
実行使用メモリ 10,436 KB
最終ジャッジ日時 2024-12-22 13:55:12
合計ジャッジ時間 4,314 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
10,228 KB
testcase_01 AC 61 ms
10,400 KB
testcase_02 AC 49 ms
9,596 KB
testcase_03 AC 55 ms
9,216 KB
testcase_04 AC 50 ms
9,344 KB
testcase_05 AC 50 ms
9,996 KB
testcase_06 AC 69 ms
10,436 KB
testcase_07 AC 56 ms
10,256 KB
testcase_08 AC 48 ms
9,828 KB
testcase_09 AC 46 ms
9,344 KB
testcase_10 AC 41 ms
8,508 KB
testcase_11 AC 47 ms
8,320 KB
testcase_12 AC 43 ms
8,704 KB
testcase_13 AC 39 ms
8,704 KB
testcase_14 AC 39 ms
8,576 KB
testcase_15 AC 36 ms
8,204 KB
testcase_16 AC 43 ms
8,448 KB
testcase_17 AC 46 ms
8,704 KB
testcase_18 AC 44 ms
8,832 KB
testcase_19 AC 39 ms
8,704 KB
testcase_20 AC 39 ms
8,960 KB
testcase_21 AC 35 ms
8,672 KB
testcase_22 AC 41 ms
8,448 KB
testcase_23 AC 40 ms
8,704 KB
testcase_24 AC 33 ms
8,548 KB
testcase_25 AC 39 ms
8,540 KB
testcase_26 AC 39 ms
8,576 KB
testcase_27 AC 41 ms
8,320 KB
testcase_28 AC 36 ms
8,832 KB
testcase_29 AC 41 ms
8,576 KB
testcase_30 AC 3 ms
5,504 KB
testcase_31 AC 3 ms
5,632 KB
testcase_32 AC 44 ms
9,088 KB
testcase_33 AC 45 ms
8,448 KB
testcase_34 AC 42 ms
9,344 KB
testcase_35 AC 4 ms
5,504 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 3 ms
5,504 KB
testcase_38 AC 3 ms
5,504 KB
testcase_39 AC 3 ms
5,504 KB
testcase_40 AC 3 ms
5,632 KB
testcase_41 AC 8 ms
5,760 KB
testcase_42 AC 7 ms
5,760 KB
testcase_43 AC 7 ms
6,144 KB
testcase_44 AC 7 ms
5,888 KB
testcase_45 AC 5 ms
5,632 KB
testcase_46 AC 9 ms
5,760 KB
testcase_47 AC 9 ms
5,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<algorithm>
#include<queue>
#include<vector>
using namespace std;
const int N=1e5+10; int cnt[N];
struct Team { int s,p,u,id; }a[N];
int main() {
  //freopen("icpc.in","r",stdin);
  //freopen("icpc.out","w",stdout);
  int n,k; vector<pair<pair<int,int>,int> >u[N]; priority_queue<pair<pair<pair<int,int>,int>,int> >q;
  scanf("%d %d",&n,&k);
  for(int i=0;i<n;i++) scanf("%d %d %d",&a[i].s,&a[i].p,&a[i].u),a[i].id=i,u[a[i].u].push_back({{a[i].s,-a[i].p},a[i].id});
  for(int i=1;i<N;i++) {
  	if(u[i].empty()) continue;
  	sort(u[i].begin(),u[i].end()); int x=u[i].back().second; u[i].pop_back();
  	//printf("%d %d\n",x,i);
	q.push({{{a[x].s,0},-a[x].p},x});
  }
  while(k--) {
  	//printf("S%d\n",q.size());
  	int x=q.top().second,v=a[x].u; q.pop(),printf("%d\n",x);
  	if(!u[v].empty()) {
  	  cnt[v]++;
  	  int xx=u[v].back().second; u[v].pop_back(); //printf("U%d %d %d %d\n",xx,a[xx].s,cnt[v],a[xx].p);
  	  q.push({{{a[xx].s,-cnt[v]},-a[xx].p},xx});
	}
  }
  return 0;
}
0