CF1039E.Summer Oenothera Exhibition

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

While some people enjoy spending their time solving programming contests, Dina prefers taking beautiful pictures. As soon as Byteland Botanical Garden announced Summer Oenothera Exhibition she decided to test her new camera there.

The exhibition consists of l=10100l = 10^{100} Oenothera species arranged in a row and consecutively numbered with integers from 00 to l1l - 1 . Camera lens allows to take a photo of ww species on it, i.e. Dina can take a photo containing flowers with indices from xx to x+w1x + w - 1 for some integer xx between 00 and lwl - w . We will denote such photo with [x,x+w1][x, x + w - 1] .

She has taken nn photos, the ii -th of which (in chronological order) is [xi,xi+w1][x_i, x_i + w - 1] in our notation. She decided to build a time-lapse video from these photos once she discovered that Oenothera blossoms open in the evening.

Dina takes each photo and truncates it, leaving its segment containing exactly kk flowers, then she composes a video of these photos keeping their original order and voilà, a beautiful artwork has been created!

A scene is a contiguous sequence of photos such that the set of flowers on them is the same. The change between two scenes is called a cut. For example, consider the first photo contains flowers [1,5][1, 5] , the second photo contains flowers [3,7][3, 7] and the third photo contains flowers [8,12][8, 12] . If k=3k = 3 , then Dina can truncate the first and the second photo into [3,5][3, 5] , and the third photo into [9,11][9, 11] . First two photos form a scene, third photo also forms a scene and the transition between these two scenes which happens between the second and the third photos is a cut. If k=4k = 4 , then each of the transitions between photos has to be a cut.

Dina wants the number of cuts to be as small as possible. Please help her! Calculate the minimum possible number of cuts for different values of kk .

输入格式

The first line contains three positive integer nn , ww , qq ( 1n,q1000001 \leq n, q \leq 100\,000 , 1w1091 \leq w \leq 10^9 ) — the number of taken photos, the number of flowers on a single photo and the number of queries.

Next line contains nn non-negative integers xix_i ( 0xi1090 \le x_i \le 10^9 ) — the indices of the leftmost flowers on each of the photos.

Next line contains qq positive integers kik_i ( 1kiw1 \le k_i \le w ) — the values of kk for which you have to solve the problem.

It's guaranteed that all kik_i are distinct.

输出格式

Print qq integers — for each width of the truncated photo kik_i , the minimum number of cuts that is possible.

输入输出样例

  • 输入#1

    3 6 5
    2 4 0
    1 2 3 4 5
    

    输出#1

    0
    0
    1
    1
    2
    
  • 输入#2

    6 4 3
    1 2 3 4 3 2
    1 2 3
    

    输出#2

    0
    1
    2
    
首页