結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー kurenai3110kurenai3110
提出日時 2016-10-15 09:01:23
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 112 ms / 4,000 ms
コード長 1,089 bytes
コンパイル時間 842 ms
コンパイル使用メモリ 77,692 KB
実行使用メモリ 8,036 KB
最終ジャッジ日時 2024-11-22 11:18:36
合計ジャッジ時間 5,669 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
7,780 KB
testcase_01 AC 82 ms
7,656 KB
testcase_02 AC 55 ms
7,276 KB
testcase_03 AC 86 ms
7,396 KB
testcase_04 AC 88 ms
7,272 KB
testcase_05 AC 70 ms
7,272 KB
testcase_06 AC 112 ms
8,036 KB
testcase_07 AC 59 ms
7,784 KB
testcase_08 AC 57 ms
7,780 KB
testcase_09 AC 73 ms
7,400 KB
testcase_10 AC 79 ms
7,144 KB
testcase_11 AC 97 ms
7,140 KB
testcase_12 AC 87 ms
7,144 KB
testcase_13 AC 54 ms
7,656 KB
testcase_14 AC 69 ms
7,148 KB
testcase_15 AC 45 ms
7,272 KB
testcase_16 AC 103 ms
7,140 KB
testcase_17 AC 101 ms
7,916 KB
testcase_18 AC 106 ms
7,656 KB
testcase_19 AC 54 ms
7,656 KB
testcase_20 AC 64 ms
7,144 KB
testcase_21 AC 60 ms
7,652 KB
testcase_22 AC 88 ms
7,144 KB
testcase_23 AC 72 ms
7,016 KB
testcase_24 AC 54 ms
7,656 KB
testcase_25 AC 84 ms
7,148 KB
testcase_26 AC 63 ms
7,656 KB
testcase_27 AC 83 ms
7,268 KB
testcase_28 AC 52 ms
7,400 KB
testcase_29 AC 90 ms
7,656 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 101 ms
7,144 KB
testcase_33 AC 106 ms
7,144 KB
testcase_34 AC 62 ms
7,784 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 3 ms
5,248 KB
testcase_40 AC 3 ms
5,248 KB
testcase_41 AC 7 ms
5,248 KB
testcase_42 AC 8 ms
5,248 KB
testcase_43 AC 7 ms
5,248 KB
testcase_44 AC 7 ms
5,248 KB
testcase_45 AC 3 ms
5,248 KB
testcase_46 AC 19 ms
5,248 KB
testcase_47 AC 20 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;

struct ICPC {
	int s, p, u, num;

	bool operator<(const ICPC& right) const {
		if (u != right.u) return u<right.u;
		if (s != right.s) return s>right.s;
		return p<right.p;
	}
};

int Univ[100001];

int main()
{
	cin.tie(0);
	ios::sync_with_stdio(false);

	int n, k;
	cin >> n >> k;
	vector<ICPC> data;
	for (int i = 0; i < n; i++) {
		int s, p, u; cin >> s >> p >> u;
		ICPC icpc = { s,p,u,i };
		data.push_back(icpc);
	}
	sort(data.begin(), data.end());

	vector<pair<long long, int> > pe_sort[11];
	for (int j = 0; j < data.size(); j++) {
		long long penalty = data[j].p + Univ[data[j].u] * (long long)1e7;
		pe_sort[data[j].s].push_back(make_pair(penalty, data[j].num));
		Univ[data[j].u]++;
	}

	for (int i = 0; i < 11; i++) {
		sort(pe_sort[i].begin(), pe_sort[i].end());
	}

	int cnt = 0;
	for (int i = 10; i >= 0; i--) {
		for (int j = 0; j < pe_sort[i].size(); j++) {
			cout << pe_sort[i][j].second << endl;
			cnt++;
			if (cnt == k) return 0;
		}
	}

	return 0;
}
0