CF1119D.Frets On Fire

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Miyako came to the flea kingdom with a ukulele. She became good friends with local flea residents and played beautiful music for them every day.

In return, the fleas made a bigger ukulele for her: it has nn strings, and each string has (1018+1)(10^{18} + 1) frets numerated from 00 to 101810^{18} . The fleas use the array s1,s2,,sns_1, s_2, \ldots, s_n to describe the ukulele's tuning, that is, the pitch of the jj -th fret on the ii -th string is the integer si+js_i + j .

Miyako is about to leave the kingdom, but the fleas hope that Miyako will answer some last questions for them.

Each question is in the form of: "How many different pitches are there, if we consider frets between ll and rr (inclusive) on all strings?"

Miyako is about to visit the cricket kingdom and has no time to answer all the questions. Please help her with this task!

Formally, you are given a matrix with nn rows and (1018+1)(10^{18}+1) columns, where the cell in the ii -th row and jj -th column ( 0j10180 \le j \le 10^{18} ) contains the integer si+js_i + j . You are to answer qq queries, in the kk -th query you have to answer the number of distinct integers in the matrix from the lkl_k -th to the rkr_k -th columns, inclusive.

输入格式

The first line contains an integer nn ( 1n1000001 \leq n \leq 100\,000 ) — the number of strings.

The second line contains nn integers s1,s2,,sns_1, s_2, \ldots, s_n ( 0si10180 \leq s_i \leq 10^{18} ) — the tuning of the ukulele.

The third line contains an integer qq ( 1q1000001 \leq q \leq 100\,000 ) — the number of questions.

The kk -th among the following qq lines contains two integers lkl_krkr_k ( 0lkrk10180 \leq l_k \leq r_k \leq 10^{18} ) — a question from the fleas.

输出格式

Output one number for each question, separated by spaces — the number of different pitches.

输入输出样例

  • 输入#1

    6
    3 1 4 1 5 9
    3
    7 7
    0 2
    8 17
    

    输出#1

    5 10 18
    
  • 输入#2

    2
    1 500000000000000000
    2
    1000000000000000000 1000000000000000000
    0 1000000000000000000
    

    输出#2

    2 1500000000000000000
    

说明/提示

For the first example, the pitches on the 6666 strings are as follows.

Fret01234567s1:345678910s2:12345678s3:4567891011s4:12345678s5:56789101112s6:910111213141516\begin{matrix} \textbf{Fret} & \textbf{0} & \textbf{1} & \textbf{2} & \textbf{3} & \textbf{4} & \textbf{5} & \textbf{6} & \textbf{7} & \ldots \\ s_1: & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & \dots \\ s_2: & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & \dots \\ s_3: & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 11 & \dots \\ s_4: & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & \dots \\ s_5: & 5 & 6 & 7 & 8 & 9 & 10 & 11 & 12 & \dots \\ s_6: & 9 & 10 & 11 & 12 & 13 & 14 & 15 & 16 & \dots \end{matrix}

There are 55 different pitches on fret 778,10,11,12,168, 10, 11, 12, 16

There are 1010 different pitches on frets 0,1,20, 1, 21,2,3,4,5,6,7,9,10,111, 2, 3, 4, 5, 6, 7, 9, 10, 11

首页