結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー kurenai3110kurenai3110
提出日時 2016-10-14 23:14:36
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,273 bytes
コンパイル時間 1,254 ms
コンパイル使用メモリ 83,660 KB
実行使用メモリ 22,280 KB
最終ジャッジ日時 2024-11-22 10:09:43
合計ジャッジ時間 171,104 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 3,741 ms
12,288 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 761 ms
15,020 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 2 ms
12,160 KB
testcase_31 AC 2 ms
13,452 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
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 9 ms
5,248 KB
testcase_40 AC 4 ms
5,248 KB
testcase_41 AC 45 ms
5,248 KB
testcase_42 AC 385 ms
5,248 KB
testcase_43 AC 302 ms
5,248 KB
testcase_44 AC 36 ms
5,248 KB
testcase_45 AC 6 ms
5,248 KB
testcase_46 AC 367 ms
5,248 KB
testcase_47 AC 1,994 ms
13,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

	bool operator<(const ICPC& right) const {
		return s == right.s ? p < right.p : s > right.s;
	}
};
int Univ[100001];

int main()
{
	int n, k;
	cin >> n >> k;
	vector<ICPC>raw_data(n);
	for (int i = 0; i < n; i++) {
		cin >> raw_data[i].s >> raw_data[i].p >> raw_data[i].u;
		raw_data[i].num = i;
	}
	vector<ICPC>data(raw_data);
	sort(data.begin(), data.end());

	for (int i = 0; i < k; i++) {
		int solved = data[0].s;
		vector<pair<int,pair<int,int> > > Univ_pena;
		for (int j = 0; j<data.size() && data[j].s == solved;j++) {
			Univ_pena.push_back(make_pair(Univ[data[j].u],make_pair(data[j].p,data[j].num)));
		}
		sort(Univ_pena.begin(), Univ_pena.end());

		int university = Univ_pena[0].first;
		vector<pair<int,int> > pena;
		for (int l = 0; l<Univ_pena.size() && Univ_pena[l].first == university; l++) {
			pena.push_back(Univ_pena[l].second);
		}
		sort(pena.begin(), pena.end());

		cout << pena[0].second << endl;
		Univ[raw_data[pena[0].second].u]++;
		for (int j = 0; j < data.size(); j++) {
			if (data[j].num == pena[0].second) {
				data.erase(data.begin() + j);
				break;
			}
		}
	}

    return 0;
}
0