C. Arithmetic Progression

C. Arithmetic Progression
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Everybody knows what an arithmetic progression is. Let us remind you just in case that an arithmetic progression is such sequence of numbers a1, a2, ..., an of length n, that the following condition fulfills:

a2 - a1 = a3 - a2 = a4 - a3 = ... = ai + 1 - ai = ... = an - an - 1.

For example, sequences [1, 5], [10], [5, 4, 3] are arithmetic progressions and sequences [1, 3, 2], [1, 2, 4] are not.

Alexander has n cards containing integers. Arthur wants to give Alexander exactly one more card with a number so that he could use the resulting n + 1 cards to make an arithmetic progression (Alexander has to use all of his cards).

Arthur has already bought a card but he hasn't written a number on it. Help him, print all integers that you can write on a card so that the described condition fulfilled.

Input

The first line contains integer n (1 ≤ n ≤ 105) — the number of cards. The next line contains the sequence of integers — the numbers on Alexander's cards. The numbers are positive integers, each of them doesn't exceed 108.

Output

If Arthur can write infinitely many distinct integers on the card, print on a single line -1.

Otherwise, print on the first line the number of integers that suit you. In the second line, print the numbers in the increasing order. Note that the numbers in the answer can exceed 108 or even be negative (see test samples).

Examples
input
3
4 1 7
output
2
-2 10
input
1
10
output
-1
input
4
1 3 5 9
output
1
7
input
4
4 3 4 5
output
0
input
2
2 4
output
3
0 3 6

纯思维,考虑好情况就可以。

n==-1的时候肯定是输出-1

n ==2的时候如果有中项加中项输出3个,没有输出2两个。左端点右端点。

当n>=3 的时候,看两两(排好序)之间的差值有几个不同的数。

如果>=3直接输出0.

如果 == 2,那么看一下较大的差值是不是小的差值的两倍,并且大的差值只出现过一次。这样输出一个构成较大的差值的两个数的中项。

否则输出0。

如果只有一个差值,那么看一下是不是0,是0只输出一个,不是0输出两个,左右端点。

#include <bits/stdc++.h>

using namespace std;
const int MAXN = 1e5+7;
int n;
int num[MAXN];
int cha[MAXN];
int main()
{
    scanf("%d",&n);
    for(int i = 0 ; i < n ; ++i)scanf("%d",&num[i]);
    sort(num,num+n);
    if(n == 1)puts("-1");
    else if(n == 2)
    {
        if(num[0] == num[1])
        {
            printf("1\n%d\n",num[0]);
            return 0;
        }
        int mid = (num[0]+num[1])/2;
        int d = num[1] - num[0];
        if(mid - num[0] == num[1] - mid)
        {
            puts("3");
            printf("%d %d %d\n",num[0] - d,mid,num[1] + d);
        }
        else
        {
            puts("2");
            printf("%d %d\n",num[0] - d,num[1] + d);
        }
    }
    else
    {
        set<int>q;
        for(int i = 1 ; i < n ; ++i)
        {
            q.insert(num[i] - num[i-1]);
        }
        if(q.size() == 1)
        {
            int d = *(q.begin());
            if(d == 0)
            {
                printf("1\n%d\n",num[0]);
                return 0;
            }
            puts("2");
            printf("%d %d\n",num[0] - d,num[n-1] + d);
        }
        else if(q.size() == 2)
        {
            int d1 = *(q.begin());
            int d2 = *(++q.begin());
            int pos,cnt = 0;
            if(d1*2 == d2)
            {
                for(int i = 1 ; i < n ; ++i)
                {
                    if(num[i] - num[i-1] == d2)
                    {
                        cnt++;
                        pos = i;
                    }
                }
                if(cnt == 1)
                {
                    puts("1");
                    printf("%d\n",(num[pos]+num[pos-1])/2);
                }
                else puts("0");
            }
            else puts("0");
        }
        else puts("0");
    }

    return 0;
}











### 使用C语言计算等差数列的和 #### 方法一:利用循环结构逐项累加 此方法通过遍历每一项并将其加入总和来实现。这种方法直观易懂,适合初学者理解算法逻辑。 ```c #include <stdio.h> int sum_of_arithmetic_sequence_loop(int first_term, int number_of_terms, int common_difference){ int sum = 0; for (int i = 0; i < number_of_terms; ++i) { sum += first_term + i * common_difference; } return sum; } int main(){ int a1, d, n; printf("Enter the first term of AP series: "); scanf("%d", &a1); printf("Enter total numbers in this AP series: "); scanf("%d", &n); printf("Enter common difference of A.P. series: "); scanf("%d", &d); int sum = sum_of_arithmetic_sequence_loop(a1,n,d); printf("Sum of all terms of Arithmetic Progression is %d\n",sum); } ``` 上述代码展示了如何定义函数`sum_of_arithmetic_sequence_loop()`用于接收首项、项数以及公差作为参数,并返回这些参数所描述的等差序列之和[^1]。 #### 方法二:应用数学公式直接求解 对于已知首项\(a_1\)、末项\(l\)(即第\(n\)项)、项数\(n\)的情况,可以采用更高效的公式法: \[S_n=\frac{n}{2}(a_{1}+l)\] 当只知道首项\(a_1\)、项数\(n\)和公差\(d\)时,则可先算出最后一项再带入上面的公式: \[ l=a_1+(n-1)d \] 下面是基于该原理编写的简化版程序: ```c #include <stdio.h> // Function to calculate Sum using formula Sn=(n/2)*(first_term + last_term) double sum_of_ap_formula(double first_term,double diff,int numTerms){ double lastTerm = first_term + ((numTerms - 1) * diff ); return (numTerms / 2.0 ) *(first_term + lastTerm); } int main(){ double a1,d; int n; printf("Input First Term :"); scanf("%lf",&a1); printf("Number Of Terms:"); scanf("%d",&n); printf("Common Difference:"); scanf("%lf",&d); double res=sum_of_ap_formula(a1,d,n); printf("\nThe Sum Is %.2f ",res); return 0; } ``` 这段代码实现了更为简洁快速的方式去获取指定范围内任意长度等差级数的结果[^2]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值