結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー algon_320algon_320
提出日時 2016-10-15 01:03:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 205 ms / 4,000 ms
コード長 1,952 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 180,064 KB
実行使用メモリ 14,056 KB
最終ジャッジ日時 2024-05-02 00:58:54
合計ジャッジ時間 7,875 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 190 ms
14,056 KB
testcase_01 AC 167 ms
13,616 KB
testcase_02 AC 132 ms
11,568 KB
testcase_03 AC 146 ms
10,416 KB
testcase_04 AC 150 ms
10,052 KB
testcase_05 AC 147 ms
11,896 KB
testcase_06 AC 205 ms
13,652 KB
testcase_07 AC 146 ms
13,424 KB
testcase_08 AC 134 ms
12,236 KB
testcase_09 AC 128 ms
10,052 KB
testcase_10 AC 120 ms
8,956 KB
testcase_11 AC 135 ms
8,488 KB
testcase_12 AC 138 ms
9,052 KB
testcase_13 AC 99 ms
9,068 KB
testcase_14 AC 108 ms
9,912 KB
testcase_15 AC 84 ms
7,936 KB
testcase_16 AC 138 ms
8,528 KB
testcase_17 AC 144 ms
8,968 KB
testcase_18 AC 143 ms
8,940 KB
testcase_19 AC 94 ms
9,124 KB
testcase_20 AC 108 ms
9,156 KB
testcase_21 AC 102 ms
9,072 KB
testcase_22 AC 129 ms
8,628 KB
testcase_23 AC 113 ms
8,876 KB
testcase_24 AC 96 ms
8,740 KB
testcase_25 AC 120 ms
8,552 KB
testcase_26 AC 101 ms
8,076 KB
testcase_27 AC 121 ms
8,236 KB
testcase_28 AC 96 ms
10,192 KB
testcase_29 AC 127 ms
8,412 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 142 ms
9,936 KB
testcase_33 AC 148 ms
8,888 KB
testcase_34 AC 127 ms
10,488 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 3 ms
6,944 KB
testcase_40 AC 3 ms
6,944 KB
testcase_41 AC 12 ms
6,940 KB
testcase_42 AC 12 ms
6,944 KB
testcase_43 AC 12 ms
6,944 KB
testcase_44 AC 12 ms
6,944 KB
testcase_45 AC 4 ms
6,944 KB
testcase_46 AC 24 ms
6,944 KB
testcase_47 AC 24 ms
6,944 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;
}
0