結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー kyuridenamidakyuridenamida
提出日時 2016-10-28 19:31:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,667 bytes
コンパイル時間 1,127 ms
コンパイル使用メモリ 107,448 KB
実行使用メモリ 26,660 KB
最終ジャッジ日時 2024-11-24 05:20:07
合計ジャッジ時間 35,473 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
24,436 KB
testcase_01 AC 282 ms
26,660 KB
testcase_02 AC 193 ms
21,376 KB
testcase_03 AC 240 ms
12,544 KB
testcase_04 AC 224 ms
11,776 KB
testcase_05 AC 236 ms
17,152 KB
testcase_06 AC 354 ms
18,772 KB
testcase_07 AC 220 ms
19,712 KB
testcase_08 AC 178 ms
14,828 KB
testcase_09 AC 161 ms
6,912 KB
testcase_10 AC 739 ms
6,816 KB
testcase_11 AC 2,089 ms
6,816 KB
testcase_12 AC 412 ms
6,820 KB
testcase_13 AC 122 ms
6,816 KB
testcase_14 AC 604 ms
6,820 KB
testcase_15 AC 65 ms
6,820 KB
testcase_16 TLE -
testcase_17 AC 1,987 ms
6,820 KB
testcase_18 AC 3,636 ms
6,816 KB
testcase_19 AC 127 ms
6,820 KB
testcase_20 AC 196 ms
6,816 KB
testcase_21 AC 174 ms
6,816 KB
testcase_22 AC 1,474 ms
6,816 KB
testcase_23 AC 500 ms
6,816 KB
testcase_24 AC 101 ms
6,820 KB
testcase_25 AC 1,115 ms
6,820 KB
testcase_26 AC 1,140 ms
6,820 KB
testcase_27 AC 3,969 ms
6,816 KB
testcase_28 AC 93 ms
6,816 KB
testcase_29 TLE -
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 279 ms
6,820 KB
testcase_33 AC 683 ms
6,820 KB
testcase_34 AC 151 ms
8,848 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 2 ms
6,820 KB
testcase_38 AC 1 ms
6,816 KB
testcase_39 AC 3 ms
6,816 KB
testcase_40 AC 3 ms
6,816 KB
testcase_41 AC 14 ms
6,820 KB
testcase_42 AC 20 ms
6,816 KB
testcase_43 AC 55 ms
6,820 KB
testcase_44 AC 50 ms
6,816 KB
testcase_45 AC 4 ms
6,816 KB
testcase_46 AC 36 ms
6,820 KB
testcase_47 AC 73 ms
11,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cstring>
#include <queue>
#include <cstdio>
#include <sstream>
#include <set>
#include <cassert>
#include <map>
#include <array>
using namespace std;
typedef unsigned __int128 Hash;



map<int, priority_queue<pair<int,int>>  > g[11];
int N,K;
vector<int> res;

map<int,int> picked_counter; // [univ] = #
priority_queue< array<int,3> > Q;

int get_best_univ(map<int,priority_queue< pair<int,int> > > &score){

	while(Q.size()){
		auto q = Q.top();

		int id = q[2];

		bool bad = false;
		if( score[id].size() == 0 ){
			Q.pop();
			continue;
		}
		if( score[id].top().first != q[1] ) bad = true;
		if( picked_counter[id] != q[0] ) bad = true;

		if( bad ){
			Q.pop();
			Q.push({picked_counter[id],score[id].top().first,id});
		}else{
			return id;
		}
	}
	return -1;
}
void pick(int id,map<int,priority_queue< pair<int,int> > > &score){
	assert(score[id].size()>0);

	int me = score[id].top().second;
	picked_counter[id]--;
	score[id].pop();
	Q.push({picked_counter[id],score[id].top().first,id});
	res.push_back(me);
	K--;
}


void solve(map<int, priority_queue< pair<int,int> > > &score){
	Q = priority_queue< array<int,3> >();

	for( auto i : score ){
		Q.push({picked_counter[i.first],i.second.top().first,i.first});
	}
	while(K>0){
		int uid = get_best_univ(score);
		if( uid == -1 ) break;
		pick(uid,score);
	}

}
int main(){
	cin >> N >> K;

	set<int> univ;
	for(int i = 0 ; i < N ; i++){
		int S,P,U;
		cin >> S >> P >> U;
		g[S][U].push({-P,i});
		univ.insert(U);
	}

	for(int i = 10 ; i >= 0 ; i--){
		solve(g[i]);
	}
	for(int i = 0 ; i < res.size() ; i++)
		cout << res[i] << endl;

}
0