AMC-ICPC Live Archive 7295 和 CSU 1715

对于这两道破题花了我一上午的时间,我感到很愤怒!!!因为自己少看了两个0,WA了一遍又一遍…最后看了题,哭了…QAQ,这道题应该是那种怎么写怎么过的题,简单得要死…
两道题目链接:
AMC-ICPC Live Archive 7295, click here.
CSU 1715 click hrere.

题意很简单,就是四个数,可能是等差或等比数列,如果是,求出-1所在位置的数字是多少,否则输出-1.
hint : uva-Live中的输出数据范围为[1,1000000],csu中的数据输出范围为[1,10000].
两种方法:
    1>  一位一位模拟;
    2>  直接暴力,简单粗暴.

二话不说,上代码:

1>   第一种比较麻烦的方法------模拟:(出代码中的数据范围可以根据题意需要改动.)
#include
#include
using namespace std;
int main()
{
    int a,b,c,d,x,y;
    while(cin>>a>>b>>c>>d,a!=-1||b!=-1||c!=-1||d!=-1)
    {
        if(a==-1)
        {
            x=c-b;
            y=d-c;
            if(x==y)
            {
                a=b-x;
                if(a>0&&a<1000001)
                    cout<else
                    cout<<"-1"<else
            {
                if(c%b==0&&d%c==0)
                {
                    x=c/b;
                    y=d/c;
                    a=b/x;
                    if(x==y&&b%x==0&&a<1000001&&a>0)
                            cout<else
                            cout<<"-1"<else
                    cout<<"-1"<if(b==-1)
        {
            x=d-c;
            y=c-a;
            b=a+x;
            if(y==2*x&&b<1000000&&b>0)
                cout<else
            {
                if(d%c==0&&c%a==0)
                {
                    x=d/c;
                    y=c/a;
                    b=c/x;
                    if(x*x==y&&c%x==0&&b<1000001&&b>0)
                        cout<else
                        cout<<"-1"<else
                    cout<<"-1"<if(c==-1)
        {
            x=b-a;
            y=d-b;
            c=b+x;
            if(x*2==y&&c<1000001&&c>0)
                cout<else
            {
                if(b%a==0&&d%b==0)
                {
                    x=b/a;
                    y=d/b;
                    c=d/x;
                    if(x*x==y&&d%x==0&&c<1000001&&c>0)
                        cout<else
                        cout<<"-1"<else
                    cout<<"-1"<if(d==-1)
        {
            x=c-b;
            y=b-a;
            d=c+x;
            if(x==y&&d<1000001&&d>0)
                cout<else
            {
                if(c%b==0&&b%a==0)
                {
                    x=c/b;
                    y=b/a;
                    d=c*x;
                    if(x==y&&d<=1000000&&d>0)
                        cout<else
                        cout<<"-1"<else
                    cout<<"-1"<return 0;
}
    2>  第二种方法------直接暴力.(给出代码中的数据范围可以根据题意需要改动.)

#include
using namespace std;
int main()
{
    int a[5];
    while(cin>>a[0]>>a[1]>>a[2]>>a[3],a[1]!=-1||a[2]!=-1||a[3]!=-1||a[0]!=-1)
    {
        bool flag=false;
        int p;
        for(int i=0; i<4; i++)
            if(a[i]==-1)
            {
                p=i;
                break;
            }
        for(int i=1; i<=1000000; i++)
        {
            a[p]=i;
            if(a[1]*a[1]==a[0]*a[2]&&a[2]*a[2]==a[1]*a[3])
            {
                cout<;
                flag=true;
                break;
            }
            else if(a[1]-a[0]==a[2]-a[1]&&a[3]-a[2]==a[2]-a[1])
            {
                cout<;
                flag=true;
                break;
            }
        }
        if(!flag)
            cout<<-1<;
    }
    return 0;
}

你可能感兴趣的:(数学)