結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー 🐬hec🐬hec
提出日時 2016-10-14 23:09:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 2,033 bytes
コンパイル時間 2,426 ms
コンパイル使用メモリ 193,968 KB
実行使用メモリ 746,948 KB
最終ジャッジ日時 2024-05-02 01:00:05
合計ジャッジ時間 41,615 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
testcase_44 MLE -
testcase_45 MLE -
testcase_46 MLE -
testcase_47 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define _overload(_1,_2,_3,name,...) name
#define _rep(i,n) _range(i,0,n)
#define _range(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload(__VA_ARGS__,_range,_rep,)(__VA_ARGS__)

#define _rrep(i,n) _rrange(i,n,0)
#define _rrange(i,a,b) for(int i=int(a)-1;i>=int(b);--i)
#define rrep(...) _overload(__VA_ARGS__,_rrange,_rrep,)(__VA_ARGS__)

#define _all(arg) begin(arg),end(arg)
#define uniq(arg) sort(_all(arg)),(arg).erase(unique(_all(arg)),end(arg))
#define getidx(ary,key) lower_bound(_all(ary),key)-begin(ary)
#define clr(a,b) memset((a),(b),sizeof(a))
#define bit(n) (1LL<<(n))
#define popcount(n) (__builtin_popcountll(n))

using namespace std;

template<class T>bool chmax(T &a, const T &b) { return (a<b)?(a=b,1):0;}
template<class T>bool chmin(T &a, const T &b) { return (b<a)?(a=b,1):0;}

using ll=long long;
using R=long double;
const R EPS=1e-9; // [-1000,1000]->EPS=1e-8 [-10000,10000]->EPS=1e-7
inline int sgn(const R& r){return(r > EPS)-(r < -EPS);}
inline R sq(R x){return sqrt(max<R>(x,0.0));}

const int dx[8]={1,0,-1,0,1,-1,-1,1};
const int dy[8]={0,1,0,-1,1,1,-1,-1};

// Problem Specific Parameter:

using i2=tuple<int,int>;
using i3=tuple<int,int,int>;
int n,k;


const int limit=100000;
int num[limit];
deque<i2> score[11][limit];

int s[100010],p[100010],u[100010];

int main(void){
	cin >> n >> k;
	
	rep(i,n) cin >> s[i] >> p[i] >> u[i],u[i]--;
	rep(i,n) score[s[i]][u[i]].push_back(i2(p[i],i));


	vector<int> ans;
	rrep(i,11){
		set<i3> ss;
		rep(j,limit){
			sort(_all(score[i][j]));
			if(score[i][j].size()>0){
				ss.insert(i3(num[j],get<0>(score[i][j][0]),get<1>(score[i][j][0])));
			}
		}

		while(1){
			if(ss.empty()) break;
			auto it=begin(ss);
			int uu,pp,ii;
			tie(uu,pp,ii)=*it;

			num[u[ii]]++;

			score[i][u[ii]].pop_front();
			ans.push_back(ii);
			ss.erase(it);

			
			if(score[i][u[ii]].empty()==false) ss.insert(i3(num[u[ii]],get<0>(score[i][u[ii]][0]),get<1>(score[i][u[ii]][0])));
		}

	}

	rep(i,k) cout << ans[i] << endl;
	return 0;
}
0