結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー vjudge1vjudge1
提出日時 2024-12-21 23:39:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 132 ms / 4,000 ms
コード長 1,049 bytes
コンパイル時間 1,944 ms
コンパイル使用メモリ 181,232 KB
実行使用メモリ 10,932 KB
最終ジャッジ日時 2024-12-21 23:39:41
合計ジャッジ時間 8,706 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
10,628 KB
testcase_01 AC 123 ms
10,932 KB
testcase_02 AC 103 ms
9,876 KB
testcase_03 AC 103 ms
9,660 KB
testcase_04 AC 102 ms
9,640 KB
testcase_05 AC 107 ms
10,520 KB
testcase_06 AC 132 ms
10,832 KB
testcase_07 AC 120 ms
10,652 KB
testcase_08 AC 104 ms
10,384 KB
testcase_09 AC 96 ms
9,728 KB
testcase_10 AC 86 ms
9,088 KB
testcase_11 AC 89 ms
8,824 KB
testcase_12 AC 88 ms
9,088 KB
testcase_13 AC 81 ms
9,216 KB
testcase_14 AC 84 ms
9,072 KB
testcase_15 AC 78 ms
8,600 KB
testcase_16 AC 87 ms
8,788 KB
testcase_17 AC 91 ms
9,272 KB
testcase_18 AC 89 ms
9,180 KB
testcase_19 AC 81 ms
9,340 KB
testcase_20 AC 86 ms
9,216 KB
testcase_21 AC 82 ms
9,088 KB
testcase_22 AC 87 ms
8,912 KB
testcase_23 AC 85 ms
9,216 KB
testcase_24 AC 81 ms
8,936 KB
testcase_25 AC 90 ms
8,960 KB
testcase_26 AC 81 ms
8,884 KB
testcase_27 AC 85 ms
8,712 KB
testcase_28 AC 82 ms
9,264 KB
testcase_29 AC 84 ms
8,960 KB
testcase_30 AC 3 ms
5,760 KB
testcase_31 AC 3 ms
5,888 KB
testcase_32 AC 95 ms
9,472 KB
testcase_33 AC 92 ms
8,936 KB
testcase_34 AC 96 ms
9,728 KB
testcase_35 AC 4 ms
6,016 KB
testcase_36 AC 3 ms
5,888 KB
testcase_37 AC 3 ms
5,888 KB
testcase_38 AC 4 ms
5,888 KB
testcase_39 AC 5 ms
5,888 KB
testcase_40 AC 5 ms
6,016 KB
testcase_41 AC 10 ms
6,272 KB
testcase_42 AC 10 ms
6,144 KB
testcase_43 AC 10 ms
6,400 KB
testcase_44 AC 11 ms
6,400 KB
testcase_45 AC 4 ms
6,016 KB
testcase_46 AC 14 ms
6,272 KB
testcase_47 AC 13 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define endl '\n'
#define ll long long
using namespace std;
const int N = 1e5 + 10;
int n, k;
struct node{
	int id, s, p, u;
}a[N];
vector < pair < pair <int, int>, int > > U[N];
priority_queue < pair < pair <int, int>, pair <int, int> > > pq;
int cnt[N];
int main()
{
        //freopen("icpc.in","r",stdin);
	//freopen("icpc.out","w",stdout);
	cin >> n >> k;
	for (int i = 0; i < n; i ++)
	{
		a[i].id = i;
		cin >> a[i].s >> a[i].p >> a[i].u; 
		U[a[i].u].push_back({{a[i].s, -a[i].p}, i});
	}
	for (int i = 1; i < N; i ++)
	{
		if (!U[i].empty())
		{
			sort(U[i].begin(), U[i].end());
			int x = U[i].back().second;
			U[i].pop_back();
			pq.push({{a[x].s, 0}, {-a[x].p, x}});
		}
	}
	while (k --)
	{
		pair < pair <int, int>, pair <int, int> > t = pq.top();
		pq.pop();
		int x = t.second.second;
		cout << x << '\n';
		if (!U[a[x].u].empty())
		{
			cnt[a[x].u] ++;
			int y = U[a[x].u].back().second;
			U[a[x].u].pop_back();
			pq.push({{a[y].s, -cnt[a[y].u]}, {-a[y].p, y}});
		}
	}
	return 0;
}
//Fuck you, Japan. 
0