結果

問題 No.1012 荷物収集
ユーザー leaf_1415leaf_1415
提出日時 2020-03-20 21:56:42
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 1,198 bytes
コンパイル時間 866 ms
コンパイル使用メモリ 86,068 KB
実行使用メモリ 8,052 KB
最終ジャッジ日時 2024-05-08 21:52:43
合計ジャッジ時間 7,579 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 164 ms
8,052 KB
testcase_05 AC 171 ms
7,928 KB
testcase_06 AC 168 ms
8,052 KB
testcase_07 AC 171 ms
7,924 KB
testcase_08 AC 169 ms
7,928 KB
testcase_09 AC 169 ms
7,924 KB
testcase_10 AC 172 ms
8,052 KB
testcase_11 AC 170 ms
8,048 KB
testcase_12 AC 173 ms
7,996 KB
testcase_13 AC 167 ms
8,052 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 133 ms
5,872 KB
testcase_25 AC 161 ms
7,152 KB
testcase_26 AC 55 ms
6,772 KB
testcase_27 AC 14 ms
5,376 KB
testcase_28 AC 146 ms
7,412 KB
testcase_29 AC 34 ms
7,796 KB
testcase_30 AC 141 ms
8,052 KB
testcase_31 AC 102 ms
5,376 KB
testcase_32 AC 62 ms
5,376 KB
testcase_33 AC 115 ms
5,376 KB
testcase_34 AC 130 ms
5,376 KB
testcase_35 AC 125 ms
7,156 KB
testcase_36 AC 133 ms
5,376 KB
testcase_37 AC 39 ms
7,540 KB
testcase_38 AC 137 ms
6,256 KB
testcase_39 AC 53 ms
5,376 KB
testcase_40 AC 73 ms
5,376 KB
testcase_41 AC 175 ms
7,924 KB
testcase_42 AC 92 ms
5,376 KB
testcase_43 AC 109 ms
6,384 KB
testcase_44 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#define llint long long
#define inf 1e18
#define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++)
#define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)

using namespace std;
typedef pair<llint, llint> P;

llint n, Q;
llint x[100005], w[100005];
vector<P> vec;
llint s[100005];
llint sum[100005];

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n >> Q;
	for(int i = 1; i <= n; i++){
		cin >> x[i] >> w[i];
		vec.push_back(P(x[i], w[i]));
	}
	sort(vec.begin(), vec.end());
	
	for(int i = 0; i < vec.size(); i++){
		s[i+1] = s[i] + vec[i].second;
		sum[i+1] = sum[i] + vec[i].first*vec[i].second;
	}
	
	llint y;
	for(int q = 0; q < Q; q++){
		cin >> y;
		llint p = lower_bound(vec.begin(), vec.end(), P(y, -inf)) - vec.begin();
		llint rnum = n - p, lnum = p;
		llint lsum = y*s[lnum] - sum[lnum], rsum = sum[n]-sum[lnum] - y*(s[n]-s[lnum]);
		cout << lsum + rsum << endl;
	}
	
	return 0;
}
0