結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 220 ms
11,392 KB
testcase_01 AC 203 ms
11,904 KB
testcase_02 AC 159 ms
8,704 KB
testcase_03 AC 165 ms
7,040 KB
testcase_04 AC 159 ms
7,040 KB
testcase_05 AC 174 ms
9,344 KB
testcase_06 AC 235 ms
12,032 KB
testcase_07 AC 186 ms
11,776 KB
testcase_08 AC 170 ms
9,856 KB
testcase_09 AC 137 ms
6,656 KB
testcase_10 AC 129 ms
5,760 KB
testcase_11 AC 144 ms
5,760 KB
testcase_12 AC 138 ms
5,760 KB
testcase_13 AC 101 ms
6,016 KB
testcase_14 AC 117 ms
5,760 KB
testcase_15 AC 91 ms
5,632 KB
testcase_16 AC 150 ms
5,760 KB
testcase_17 AC 151 ms
6,016 KB
testcase_18 AC 151 ms
5,888 KB
testcase_19 AC 102 ms
5,888 KB
testcase_20 AC 112 ms
6,144 KB
testcase_21 AC 108 ms
5,760 KB
testcase_22 AC 140 ms
5,632 KB
testcase_23 AC 121 ms
5,760 KB
testcase_24 AC 101 ms
5,888 KB
testcase_25 AC 132 ms
5,632 KB
testcase_26 AC 110 ms
5,632 KB
testcase_27 AC 130 ms
5,632 KB
testcase_28 AC 100 ms
6,016 KB
testcase_29 AC 138 ms
5,760 KB
testcase_30 AC 8 ms
5,376 KB
testcase_31 AC 8 ms
5,376 KB
testcase_32 AC 152 ms
6,016 KB
testcase_33 AC 159 ms
5,760 KB
testcase_34 AC 138 ms
7,168 KB
testcase_35 AC 8 ms
5,376 KB
testcase_36 AC 8 ms
5,376 KB
testcase_37 AC 8 ms
5,376 KB
testcase_38 AC 8 ms
5,376 KB
testcase_39 AC 9 ms
5,376 KB
testcase_40 AC 9 ms
5,376 KB
testcase_41 AC 17 ms
5,376 KB
testcase_42 AC 17 ms
5,376 KB
testcase_43 AC 16 ms
5,376 KB
testcase_44 AC 17 ms
5,376 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 29 ms
5,376 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