A807.Closest Cow Wins--Silver

提高+/省选-

USACO

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Farmer John owns a long farm along the highway that can be considered somewhat
like a one-dimensional number line. Along the farm, there are KK grassy
patches (1K21051 \leq K \leq 2\cdot 10^5); the ii-th patch is located at position
pip_i and has an associated tastiness value tit_i (0ti1090\le t_i\le 10^9). Farmer
John's nemesis, Farmer Nhoj, has already situated his MM cows (1M21051 \leq M \leq 2\cdot 10^5) at locations f1fMf_1 \ldots f_M. All K+MK+M of these locations are
distinct integers in the range [0,109][0,10^9].
Farmer John needs to pick NN (1N21051\le N\le 2\cdot 10^5) locations (not
necessarily integers) for his cows to be located. These must be distinct from
those already occupied by the cows of Farmer Nhoj, but it is possible for
Farmer John to place his cows at the same locations as grassy patches.
Whichever farmer owns a cow closest to a grassy patch can claim ownership of
that patch. If there are two cows from rival farmers equally close to the
patch, then Farmer Nhoj claims the patch.
Given the locations of Farmer Nhoj's cows and the locations and tastiness
values of the grassy patches, determine the maximum total tastiness Farmer
John's cows can claim if optimally positioned.

输入格式

The first line contains KK, MM, and NN.
The next KK lines each contain two space-separated integers pip_i and tit_i.
The next MM lines each contain a single integer fif_i.

输出格式

An integer denoting the maximum total tastiness. Note that the answer to this
problem can be too large to fit into a 32-bit integer, so you probably want to
use 64-bit integers (e.g., "long long"s in C or C++).

输入输出样例

  • 输入#1

    6 5 2
    0 4
    4 6
    8 10
    10 8
    12 12
    13 14
    2
    3
    5
    7
    11
    

    输出#1

    36
    

说明/提示

If Farmer John places cows at positions 11.511.5 and 88 then he can claim a
total tastiness of 10+12+14=3610+12+14=36.

首页