304692: CF895B. XK Segments
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
XK Segments
题意翻译
对一个数组a,定义符合条件的二元组(i,j)表示恰好存在k个整数y,满足$a_i \leq y \leq a_j$且y为x的倍数,求符合条件的二元组数量。 注意二元组$(i, j) == (j, i)$当且仅当$i == j$。 输入数据第一行是n, x, k,接下来一行有n个数字,第i个代表$a_i$ Translated by LiRewriter题目描述
While Vasya finished eating his piece of pizza, the lesson has already started. For being late for the lesson, the teacher suggested Vasya to solve one interesting problem. Vasya has an array $ a $ and integer $ x $ . He should find the number of different ordered pairs of indexes $ (i,j) $ such that $ a_{i}<=a_{j} $ and there are exactly $ k $ integers $ y $ such that $ a_{i}<=y<=a_{j} $ and $ y $ is divisible by $ x $ . In this problem it is meant that pair $ (i,j) $ is equal to $ (j,i) $ only if $ i $ is equal to $ j $ . For example pair $ (1,2) $ is not the same as $ (2,1) $ .输入输出格式
输入格式
The first line contains 3 integers $ n,x,k $ ( $ 1<=n<=10^{5},1<=x<=10^{9},0<=k<=10^{9} $ ), where $ n $ is the size of the array $ a $ and $ x $ and $ k $ are numbers from the statement. The second line contains $ n $ integers $ a_{i} $ ( $ 1<=a_{i}<=10^{9} $ ) — the elements of the array $ a $ .
输出格式
Print one integer — the answer to the problem.
输入输出样例
输入样例 #1
4 2 1
1 3 5 7
输出样例 #1
3
输入样例 #2
4 2 0
5 3 1 7
输出样例 #2
4
输入样例 #3
5 3 1
3 3 3 3 3
输出样例 #3
25