a526. D. Fence
標籤 :
通過比率 : 6人/9人 ( 67% ) [非即時]
評分方式:
Tolerant

最近更新 : 2012-10-12 14:08

內容

John Doe has a crooked fence, consisting of n rectangular planks, lined up from the left to the right: the plank that goes i-th (1 ≤ i ≤ n)(from left to right) has width 1 and height hi. We will assume that the plank that goes i-th (1 ≤ i ≤ n) (from left to right) has index i.

A piece of the fence from l to r (1 ≤ l ≤ r ≤ n) is a sequence of planks of wood with indices from l to r inclusive, that is, planks with indicesl, l + 1, ..., r. The width of the piece of the fence from l to r is value r - l + 1.

Two pieces of the fence from l1 to r1 and from l2 to r2 are called matching, if the following conditions hold:

 

  • the pieces do not intersect, that is, there isn't a single plank, such that it occurs in both pieces of the fence;
  • the pieces are of the same width;
  • for all i (0 ≤ i ≤ r1 - l1) the following condition holds: hl1 + i + hl2 + i = hl1 + hl2.

 

John chose a few pieces of the fence and now wants to know how many distinct matching pieces are for each of them. Two pieces of the fence are distinct if there is a plank, which belongs to one of them and does not belong to the other one.

輸入說明

The first line contains integer n (1 ≤ n ≤ 105) — the number of wood planks in the fence. The second line contains n space-separated integers h1, h2, ..., hn (1 ≤ hi ≤ 109) — the heights of fence planks.

The third line contains integer q (1 ≤ q ≤ 105) — the number of queries. Next q lines contain two space-separated integers li and ri (1 ≤ li ≤ ri ≤ n) — the boundaries of the i-th piece of the fence.

輸出說明
For each query on a single line print a single integer — the number of pieces of the fence that match the given one. Print the answers to the queries in the order, in which the queries are given in the input.
範例輸入 #1
10
1 2 2 1 100 99 99 100 100 100
6
1 4
1 2
3 4
1 5
9 10
10 10
範例輸出 #1
1
2
2
0
2
9
測資資訊:
記憶體限制: 512 MB
公開 測資點#0 (5%): 3.0s , <1K
公開 測資點#1 (10%): 3.0s , <10M
公開 測資點#2 (10%): 3.0s , <10M
公開 測資點#3 (15%): 3.0s , <10M
公開 測資點#4 (15%): 3.0s , <10M
公開 測資點#5 (15%): 3.0s , <10M
公開 測資點#6 (15%): 3.0s , <10M
公開 測資點#7 (15%): 3.0s , <10M
提示 :
string suffix structures
標籤:
出處:
Codeforces232D [管理者: liouzhou_101 (王启圣) ]

本題狀況 本題討論 排行

編號 身分 題目 主題 人氣 發表日期
沒有發現任何「解題報告」