結果

問題 No.1708 Quality of Contest
ユーザー platinumplatinum
提出日時 2020-09-14 23:53:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 210,236 KB
実行使用メモリ 18,196 KB
最終ジャッジ日時 2024-09-17 16:50:29
合計ジャッジ時間 8,076 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 7 ms
6,944 KB
testcase_05 AC 6 ms
6,948 KB
testcase_06 AC 6 ms
6,944 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 249 ms
18,196 KB
testcase_10 AC 224 ms
13,516 KB
testcase_11 AC 236 ms
11,836 KB
testcase_12 AC 242 ms
12,708 KB
testcase_13 AC 227 ms
11,048 KB
testcase_14 AC 247 ms
13,236 KB
testcase_15 AC 256 ms
16,176 KB
testcase_16 AC 255 ms
15,996 KB
testcase_17 AC 238 ms
13,572 KB
testcase_18 AC 242 ms
13,836 KB
testcase_19 AC 248 ms
14,716 KB
testcase_20 AC 239 ms
13,400 KB
testcase_21 AC 244 ms
13,956 KB
testcase_22 AC 242 ms
13,308 KB
testcase_23 AC 252 ms
15,968 KB
testcase_24 AC 204 ms
9,668 KB
testcase_25 AC 207 ms
9,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0; i<(int)(n); i++)

using namespace std;
using LL = long long;

int main(){
	int N, M;
	LL X;
	cin >> N >> M >> X;
	vector<vector<LL>> G(M);
	rep(i,N){
		LL v, g;
		cin >> v >> g;
		g--;
		G[g].emplace_back(v);
	}
	int K;
	cin >> K;
	vector<int> p(K);
	rep(i,K) cin >> p[i];
	rep(i,M) sort(G[i].begin(),G[i].end(),greater<LL>());
	rep(i,M) if(G[i].size()) G[i][0] += X;
	vector<LL> V;
	rep(i,M){
		rep(j,G[i].size()) V.emplace_back(G[i][j]);
	}
	sort(V.begin(),V.end(),greater<LL>());
	vector<LL> sum(N+1);
	rep(i,N) sum[i+1] = sum[i] + V[i];
	LL ans = 0;
	rep(i,K) ans += sum[p[i]];
	cout << ans << endl;

	return 0;
}
0