CF352B.Jeff and Periods
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
One day Jeff got hold of an integer sequence a1 , a2 , ... , an of length n . The boy immediately decided to analyze the sequence. For that, he needs to find all values of x , for which these conditions hold:
- x occurs in sequence a .
- Consider all positions of numbers x in the sequence a (such i , that ai=x ). These numbers, sorted in the increasing order, must form an arithmetic progression.
Help Jeff, find all x that meet the problem conditions.
输入格式
The first line contains integer n (1<=n<=105) . The next line contains integers a1 , a2 , ... , an (1<=ai<=105) . The numbers are separated by spaces.
输出格式
In the first line print integer t — the number of valid x . On each of the next t lines print two integers x and px , where x is current suitable value, px is the common difference between numbers in the progression (if x occurs exactly once in the sequence, px must equal 0). Print the pairs in the order of increasing x .
输入输出样例
输入#1
1 2
输出#1
1 2 0
输入#2
8 1 2 1 3 1 2 1 5
输出#2
4 1 2 2 4 3 0 5 0
说明/提示
In the first test 2 occurs exactly once in the sequence, ergo p2=0 .