結果

問題 No.1708 Quality of Contest
ユーザー 沙耶花沙耶花
提出日時 2021-10-15 21:34:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 3,668 ms
コンパイル使用メモリ 269,844 KB
実行使用メモリ 16,516 KB
最終ジャッジ日時 2024-09-17 17:16:48
合計ジャッジ時間 8,160 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 5 ms
6,944 KB
testcase_04 AC 5 ms
6,940 KB
testcase_05 AC 5 ms
6,944 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 198 ms
16,516 KB
testcase_10 AC 179 ms
12,700 KB
testcase_11 AC 193 ms
10,024 KB
testcase_12 AC 193 ms
11,028 KB
testcase_13 AC 190 ms
9,240 KB
testcase_14 AC 200 ms
11,300 KB
testcase_15 AC 208 ms
14,372 KB
testcase_16 AC 204 ms
14,184 KB
testcase_17 AC 202 ms
11,764 KB
testcase_18 AC 190 ms
12,112 KB
testcase_19 AC 194 ms
12,928 KB
testcase_20 AC 189 ms
11,596 KB
testcase_21 AC 198 ms
12,148 KB
testcase_22 AC 194 ms
11,504 KB
testcase_23 AC 198 ms
14,156 KB
testcase_24 AC 173 ms
7,984 KB
testcase_25 AC 174 ms
7,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001
	 
int main(){
	
	long long N,M,X;
	cin>>N>>M>>X;
	
	vector v(M+5,vector<long long>());
	
	rep(i,N){
		long long a,b;
		cin>>a>>b;
		
		v[b].push_back(a);
	}
	vector<long long> S;
	rep(i,v.size()){
		sort(v[i].rbegin(),v[i].rend());
		if(v[i].size()>0){
			v[i][0] += X;
			rep(j,v[i].size())S.push_back(v[i][j]);
		}
	}
	
	sort(S.rbegin(),S.rend());
	
	S.insert(S.begin(),0LL);
	rep(i,S.size()-1)S[i+1] += S[i];

	long long ans = 0LL;
	int K;cin>>K;
	rep(i,K){
		int C;
		cin>>C;
		ans += S[C];
	}
	cout<<ans<<endl;
	
	return 0;
}
0