結果
問題 | No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい |
ユーザー | 🐬hec |
提出日時 | 2016-10-14 23:51:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,255 bytes |
コンパイル時間 | 2,329 ms |
コンパイル使用メモリ | 197,088 KB |
実行使用メモリ | 816,376 KB |
最終ジャッジ日時 | 2024-11-22 07:19:52 |
合計ジャッジ時間 | 63,913 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 | - |
ソースコード
#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]; deque<int> order[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)); rep(i,11){ rep(j,limit) sort(_all(score[i][j])); rep(j,limit){ for(auto &k:score[i][j]){ num[j]++; order[i][j].push_back(num[j]); } reverse(_all(order[i][j])); reverse(_all(score[i][j])); } } vector<int> ans; rep(i,11){ priority_queue<i3,vector<i3>,greater<i3>> q; rep(j,limit) if(order[i][j].size()>0) q.push(i3(order[i][j][0],get<0>(score[i][j][0]),get<1>(score[i][j][0]))); while(!q.empty()){ int uu,pp,ii; tie(uu,pp,ii)=q.top(); q.pop(); order[i][u[ii]].pop_front(),score[i][u[ii]].pop_front(); ans.push_back(ii); if(order[i][u[ii]].size()>0) q.push(i3(order[i][u[ii]][0],get<0>(score[i][u[ii]][0]),get<1>(score[i][u[ii]][0]))); } } reverse(_all(ans)); rep(i,k) cout << ans[i] << endl; return 0; }