結果

問題 No.1708 Quality of Contest
ユーザー publflpublfl
提出日時 2021-10-15 21:47:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 797 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 56,276 KB
実行使用メモリ 16,352 KB
最終ジャッジ日時 2024-09-17 17:23:52
合計ジャッジ時間 4,022 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,920 KB
testcase_01 AC 4 ms
9,020 KB
testcase_02 AC 4 ms
7,888 KB
testcase_03 AC 5 ms
8,128 KB
testcase_04 AC 5 ms
8,128 KB
testcase_05 AC 5 ms
8,004 KB
testcase_06 AC 5 ms
7,912 KB
testcase_07 AC 5 ms
7,868 KB
testcase_08 AC 4 ms
8,124 KB
testcase_09 AC 115 ms
16,352 KB
testcase_10 AC 97 ms
10,956 KB
testcase_11 AC 123 ms
12,324 KB
testcase_12 AC 127 ms
12,672 KB
testcase_13 AC 116 ms
11,956 KB
testcase_14 AC 127 ms
12,868 KB
testcase_15 AC 141 ms
13,984 KB
testcase_16 AC 137 ms
13,940 KB
testcase_17 AC 122 ms
12,912 KB
testcase_18 AC 122 ms
12,948 KB
testcase_19 AC 123 ms
13,520 KB
testcase_20 AC 119 ms
12,844 KB
testcase_21 AC 133 ms
13,356 KB
testcase_22 AC 129 ms
12,960 KB
testcase_23 AC 138 ms
14,028 KB
testcase_24 AC 97 ms
11,356 KB
testcase_25 AC 97 ms
11,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>
#include <algorithm>

std::vector<int> V[200010],save;
long long int sum[200010];
int main()
{
	int a,b,c;
	scanf("%d%d%d",&a,&b,&c);
	
	for(int i=1;i<=a;i++)
	{
		int d,e;
		scanf("%d%d",&d,&e);
		V[e].push_back(d);
	}
	
	for(int i=1;i<=b;i++) std::sort(V[i].begin(),V[i].end());
	
	for(int i=1;i<=b;i++)
	{
		if(V[i].size()>=1)
		{
			std::reverse(V[i].begin(),V[i].end());
			save.push_back(V[i][0]+c);
			for(int j=1;j<V[i].size();j++) save.push_back(V[i][j]);
		}
	}
	
	std::sort(save.begin(),save.end());
	std::reverse(save.begin(),save.end());
	
	for(int i=0;i<save.size();i++) sum[i+1] = sum[i] + save[i];
	
	int d;
	scanf("%d",&d);
	long long int ans = 0;
	for(int i=1;i<=d;i++)
	{
		int e;
		scanf("%d",&e);
		ans += sum[e];
	}
	printf("%lld",ans);
}
0