結果

問題 No.1012 荷物収集
ユーザー kotatsugamekotatsugame
提出日時 2020-03-24 20:29:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 875 ms
コンパイル使用メモリ 76,776 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-31 16:08:59
合計ジャッジ時間 10,683 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 229 ms
6,816 KB
testcase_05 AC 232 ms
6,820 KB
testcase_06 AC 228 ms
6,816 KB
testcase_07 AC 231 ms
6,820 KB
testcase_08 AC 228 ms
6,820 KB
testcase_09 AC 231 ms
6,816 KB
testcase_10 AC 229 ms
6,824 KB
testcase_11 AC 231 ms
6,816 KB
testcase_12 AC 231 ms
6,816 KB
testcase_13 AC 234 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 3 ms
6,816 KB
testcase_17 AC 3 ms
6,820 KB
testcase_18 AC 4 ms
6,820 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 3 ms
6,816 KB
testcase_22 AC 3 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 170 ms
6,816 KB
testcase_25 AC 210 ms
6,820 KB
testcase_26 AC 90 ms
6,816 KB
testcase_27 AC 22 ms
6,816 KB
testcase_28 AC 199 ms
6,820 KB
testcase_29 AC 77 ms
6,816 KB
testcase_30 AC 195 ms
6,820 KB
testcase_31 AC 121 ms
6,820 KB
testcase_32 AC 78 ms
6,816 KB
testcase_33 AC 137 ms
6,816 KB
testcase_34 AC 154 ms
6,816 KB
testcase_35 AC 165 ms
6,816 KB
testcase_36 AC 152 ms
6,820 KB
testcase_37 AC 76 ms
6,816 KB
testcase_38 AC 173 ms
6,820 KB
testcase_39 AC 72 ms
6,820 KB
testcase_40 AC 94 ms
6,820 KB
testcase_41 AC 227 ms
6,820 KB
testcase_42 AC 118 ms
6,816 KB
testcase_43 AC 143 ms
6,820 KB
testcase_44 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int N,Q;
long ans[1<<17];
main()
{
	cin>>N>>Q;
	vector<pair<int,int> >A(N+Q);
	long now=0,W=0;
	for(int i=0;i<N;i++)
	{
		cin>>A[i].first>>A[i].second;
		now+=(long)A[i].first*A[i].second;
		W-=A[i].second;
	}
	for(int i=0;i<Q;i++)
	{
		cin>>A[N+i].first;
		A[N+i].second=-i;
	}
	sort(A.begin(),A.end());
	int pre=0;
	for(pair<int,int>p:A)
	{
		int x=p.first;
		now+=W*(x-pre);
		pre=x;
		if(p.second>0)
		{
			W+=p.second*2;
		}
		else
		{
			ans[-p.second]=now;
		}
	}
	for(int i=0;i<Q;i++)cout<<ans[i]<<endl;
}
0