比赛 NOIP2023模拟赛4 评测结果 ATATTTTTTTTTTTTTTTTT
题目名称 等差子序列 最终得分 10
用户昵称 元始天尊 运行时间 2.787 s
代码语言 C++ 内存使用 5.81 MiB
提交时间 2023-11-16 10:57:17
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
const int N=100010;
int a[N],n;
bool work(int u)
{
    for(int i=u-1;i>=1;i--)
    {
        for(int j=u+1;j<=n;j++)
        {
            if(a[u]-a[i]==a[j]-a[u])
            {
                return true;
            }
        }
    }
    return false;
}
int main()
{
    freopen("sequence.in","r",stdin);
    freopen("sequence.out","w",stdout);
    int t;
    cin>>t;
    for(int i=1;i<=t;i++)   
    {
        bool found=false;
        cin>>n;
        memset(a,0,sizeof(a));
        for(int j=1;j<=n;j++) cin>>a[j];
        for(int j=1;j<=n;j++)
        {
            if(work(j))
            {
                cout<<"Y"<<endl;
                found=true;
                break;
            }
        }
        if(!found)
        {
            cout<<"N"<<endl;
        }
    }
    return 0;
}