XDOJ_1079_暴力技巧

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XDOJ_1079_暴力技巧相关的知识,希望对你有一定的参考价值。

http://acm.xidian.edu.cn/problem.php?id=1079

 

枚举每一个区间不行,就枚举每一对存在的数,然后用最大子串的思路,中间加上判断枚举的数是否存在。

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;

int a[100005],n,m,has[15];

int main()
{
    int T;
    scanf("%d",&T);
    while(T--)
    {
        memset(has,0,sizeof(has));
        scanf("%d%d",&n,&m);
        int cnt = 0;
        for(int i = 1;i <= n;i++)
        {
            scanf("%d",&a[i]);
            if(!has[a[i]])    has[a[i]] = 1;
        }
        int ans = 0;
        for(int i = 1;i <= m;i++)
        {
            for(int j = 1;j <= m;j++)
            {
                if(i == j)    continue;
                if(!has[i] || !has[j])    continue;
                int sum = 0,maxx = 0,flag = 0;
                for(int k = 1;k <= n;k++)
                {
                    if(a[k] == i)    sum++;
                    else if(a[k] == j)
                    {
                        sum--;
                        flag = 1;
                    }
                    if(sum < 0)
                    {
                        sum = 0;
                        flag = 0;
                    }
                    if(flag)    maxx = max(maxx,sum);
                    else    maxx = max(maxx,sum-1);
                }
                ans = max(ans,maxx);
            }
        }
        printf("%d\n",ans);
    }
    return 0;
}

 

以上是关于XDOJ_1079_暴力技巧的主要内容,如果未能解决你的问题,请参考以下文章

XDOJ_1004_暴力

XDOJ_1170_数学

XDOJ_1179_贪心

XDOJ_1084_dfs

XDOJ_1117_状态压缩DP

XDOJ_1160_set