結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー a3636takoa3636tako
提出日時 2016-10-28 19:28:59
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 986 bytes
コンパイル時間 1,888 ms
コンパイル使用メモリ 174,296 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-11-24 05:19:25
合計ジャッジ時間 7,629 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
11,392 KB
testcase_01 AC 167 ms
11,648 KB
testcase_02 AC 124 ms
8,832 KB
testcase_03 AC 140 ms
7,040 KB
testcase_04 AC 135 ms
6,784 KB
testcase_05 AC 141 ms
9,216 KB
testcase_06 AC 195 ms
11,904 KB
testcase_07 AC 140 ms
11,520 KB
testcase_08 AC 133 ms
9,856 KB
testcase_09 AC 119 ms
6,528 KB
testcase_10 AC 115 ms
5,760 KB
testcase_11 AC 128 ms
5,760 KB
testcase_12 AC 127 ms
5,888 KB
testcase_13 AC 91 ms
5,760 KB
testcase_14 AC 108 ms
5,760 KB
testcase_15 AC 83 ms
5,888 KB
testcase_16 AC 137 ms
5,888 KB
testcase_17 AC 136 ms
5,888 KB
testcase_18 AC 140 ms
5,760 KB
testcase_19 AC 93 ms
5,888 KB
testcase_20 AC 103 ms
6,144 KB
testcase_21 AC 97 ms
5,888 KB
testcase_22 AC 132 ms
5,888 KB
testcase_23 AC 113 ms
5,760 KB
testcase_24 AC 95 ms
5,760 KB
testcase_25 AC 118 ms
5,632 KB
testcase_26 AC 100 ms
5,632 KB
testcase_27 AC 114 ms
5,760 KB
testcase_28 AC 92 ms
6,016 KB
testcase_29 AC 123 ms
5,760 KB
testcase_30 AC 6 ms
5,248 KB
testcase_31 AC 7 ms
5,248 KB
testcase_32 AC 138 ms
6,016 KB
testcase_33 AC 140 ms
5,760 KB
testcase_34 AC 117 ms
7,168 KB
testcase_35 AC 7 ms
5,248 KB
testcase_36 AC 7 ms
5,248 KB
testcase_37 AC 7 ms
5,248 KB
testcase_38 AC 8 ms
5,248 KB
testcase_39 AC 9 ms
5,248 KB
testcase_40 AC 8 ms
5,376 KB
testcase_41 AC 15 ms
5,376 KB
testcase_42 AC 15 ms
5,248 KB
testcase_43 AC 15 ms
5,376 KB
testcase_44 AC 16 ms
5,376 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 26 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

struct Team{
	int idx;
	int s;
	int p;
	int u;
	int uidx;
	Team() {}
	Team(int idx, int s, int p, int u) : idx(idx),s(s), p(p), u(u) {}
};

int N, K;
vector<Team> teams(100001);
map<int, vector<int>> univ;
int main(){
	cin >> N >> K;
	for(int i = 0; i < N; i++){
		int s, p, u;
		cin >> s >> p >> u;
		Team t(i, s, p, u);
		teams[i] = t;
		univ[u].push_back(i);
	}
	for(auto& uu : univ){
		sort(uu.second.begin(), uu.second.end(),  [] (const int& a, const int& b) -> bool { 
			if(teams[a].s != teams[b].s) return teams[b].s < teams[a].s;
			else return teams[a].p < teams[b].p;
		});
		for(int i = 0; i < uu.second.size(); i++){
			teams[uu.second[i]].uidx = i;
		}
	}
	sort(teams.begin(), teams.end(),  [] (const Team& a, const Team& b) -> bool { 
			if(a.s != b.s) return b.s < a.s;
			else if(a.uidx != b.uidx) return a.uidx < b.uidx;
			else return a.p < b.p;
		});

	for(int i = 0; i < K; i++){
		cout << teams[i].idx <<  endl;
	}
}

0