結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー algon_320algon_320
提出日時 2016-10-15 01:03:30
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 228 ms / 4,000 ms
コード長 1,952 bytes
コンパイル時間 1,865 ms
コンパイル使用メモリ 180,300 KB
実行使用メモリ 13,656 KB
最終ジャッジ日時 2024-11-22 09:57:46
合計ジャッジ時間 8,816 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 212 ms
13,288 KB
testcase_01 AC 196 ms
13,484 KB
testcase_02 AC 156 ms
11,568 KB
testcase_03 AC 169 ms
10,416 KB
testcase_04 AC 165 ms
10,184 KB
testcase_05 AC 174 ms
11,896 KB
testcase_06 AC 228 ms
13,656 KB
testcase_07 AC 175 ms
13,424 KB
testcase_08 AC 162 ms
12,112 KB
testcase_09 AC 142 ms
10,180 KB
testcase_10 AC 131 ms
8,828 KB
testcase_11 AC 146 ms
8,236 KB
testcase_12 AC 140 ms
9,052 KB
testcase_13 AC 105 ms
9,068 KB
testcase_14 AC 118 ms
8,880 KB
testcase_15 AC 95 ms
7,812 KB
testcase_16 AC 155 ms
8,276 KB
testcase_17 AC 154 ms
8,840 KB
testcase_18 AC 159 ms
8,948 KB
testcase_19 AC 105 ms
8,996 KB
testcase_20 AC 117 ms
9,020 KB
testcase_21 AC 112 ms
8,940 KB
testcase_22 AC 141 ms
8,628 KB
testcase_23 AC 122 ms
9,004 KB
testcase_24 AC 105 ms
8,744 KB
testcase_25 AC 137 ms
8,680 KB
testcase_26 AC 111 ms
7,956 KB
testcase_27 AC 132 ms
8,232 KB
testcase_28 AC 107 ms
10,192 KB
testcase_29 AC 140 ms
8,284 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 160 ms
9,680 KB
testcase_33 AC 163 ms
8,768 KB
testcase_34 AC 146 ms
10,356 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 2 ms
6,816 KB
testcase_39 AC 3 ms
6,820 KB
testcase_40 AC 3 ms
6,820 KB
testcase_41 AC 12 ms
6,820 KB
testcase_42 AC 12 ms
6,816 KB
testcase_43 AC 12 ms
6,816 KB
testcase_44 AC 12 ms
6,816 KB
testcase_45 AC 4 ms
6,820 KB
testcase_46 AC 25 ms
6,816 KB
testcase_47 AC 25 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

#include <bits/stdc++.h>
using namespace std;
// #define int long long
using ll=long long;
using vi=vector<int>;
using vl=vector<long long>;
using pii=pair<int,int>;
#define ITR(v,c) for(auto v=begin(c);v!=end(c);v++)
#define FOR(v,a,n) for(int v=a;v<(int)(n);v++)
#define FORE(x,arr) for(auto &x:arr)
#define REP(v,n) FOR(v,0,n)
#define RREP(v,n) for(int v=((int)(n)-1);v>=0;v--)
#define ALL(c) begin(c),end(c)
#define RALL(c) rbegin(c),rend(c)
#define SZ(c) ((int)c.size())
#define DUMP(x) cerr<<#x<<":="<<(x)<<endl
const int DX[9]={0,1,0,-1,1,1,-1,-1,0}, DY[9]={-1,0,1,0,-1,1,1,-1,0};
const int INF=1e9; const long long INFLL=1e18;
template<class T,class U>ostream&operator<<(ostream &os,const pair<T,U> &p){
os<<"("<<p.first<<" "<<p.second<<")";return os;}
template<class T>ostream&operator<<(ostream &os,const vector<T> &v){
ITR(i,v)os<<*i<<(i==end(v)-1?"":"\n");return os;}
//------------------------------------------------------------------------------
struct team {
int id;
int s;
int p;
int u;
int univ_rank;
};
bool comp(const team& l,const team& r) {
return (l.s==r.s ? l.p<r.p : l.s>r.s);
}
bool comp2(const team& l,const team& r) {
return (l.s==r.s ? (l.univ_rank==r.univ_rank ? l.p<r.p : l.univ_rank<r.univ_rank) : l.s>r.s);
}
signed main() {
int n,k;
cin>>n>>k;
map<int,vector<team>> t;
REP(i,n) {
team te;
te.id=i;
te.univ_rank=INF;
cin>>te.s>>te.p>>te.u;
t[te.u].push_back(te);
}
vector<team> teams;
ITR(i,t) {
sort(ALL(i->second),comp);
REP(j,SZ(i->second)) {
(i->second)[j].univ_rank=j;
// printf("id=%d s=%d p=%d u=%d rank=%d\n", (i->second)[j].id,(i->second)[j].s,(i->second)[j].p,(i->second)[j].u,(i->second)[j].univ_rank
                );
teams.push_back((i->second)[j]);
}
}
sort(ALL(teams),comp2);
REP(i,k) {
cout<<teams[i].id<<endl;
}
return 0;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0