結果

問題 No.1708 Quality of Contest
ユーザー atjh16atjh16
提出日時 2021-10-17 11:58:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 674 bytes
コンパイル時間 2,368 ms
コンパイル使用メモリ 209,216 KB
実行使用メモリ 18,820 KB
最終ジャッジ日時 2024-09-17 19:39:47
合計ジャッジ時間 7,257 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,192 KB
testcase_01 AC 3 ms
8,140 KB
testcase_02 AC 4 ms
8,116 KB
testcase_03 AC 8 ms
8,320 KB
testcase_04 AC 9 ms
8,320 KB
testcase_05 AC 8 ms
8,320 KB
testcase_06 AC 8 ms
8,260 KB
testcase_07 AC 8 ms
8,240 KB
testcase_08 AC 4 ms
8,048 KB
testcase_09 AC 236 ms
18,820 KB
testcase_10 AC 193 ms
14,144 KB
testcase_11 AC 220 ms
15,792 KB
testcase_12 AC 210 ms
16,008 KB
testcase_13 AC 207 ms
15,564 KB
testcase_14 AC 219 ms
16,072 KB
testcase_15 AC 224 ms
16,804 KB
testcase_16 AC 212 ms
16,852 KB
testcase_17 AC 204 ms
16,332 KB
testcase_18 AC 210 ms
16,292 KB
testcase_19 AC 208 ms
16,604 KB
testcase_20 AC 206 ms
16,128 KB
testcase_21 AC 207 ms
16,260 KB
testcase_22 AC 214 ms
16,092 KB
testcase_23 AC 226 ms
16,752 KB
testcase_24 AC 184 ms
15,048 KB
testcase_25 AC 185 ms
14,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

long long n, k, m, x, c, s, t, z = 0;
vector<long long> a[200000];
vector<long long> b, d;

int main()
{
	cin >> n >> m >> x;

	for (int i = 0; i < n; i++) {
		cin >> s >> t;
		t--;

		a[t].push_back(s);
	}

	for (int i = 0; i < m; i++) {
		if (a[i].size() > 0) {
			sort(a[i].begin(), a[i].end());
			a[i].back() += x;

			for (long long j : a[i])
				b.push_back(j);
		}
	}

	sort(b.begin(), b.end(), greater<long long>());
	d.push_back(b[0]);

	for (int i = 1; i < b.size(); i++)
		d.push_back(d.back() + b[i]);

	cin >> k;

	for (int i = 0; i < k; i++) {
		cin >> c;

		if(c > 0)
			z += d[c - 1];
	}

	cout << z << endl;
}
0