码迷,mamicode.com
首页 > 其他好文 > 详细

Uva11572

时间:2017-04-17 21:54:10      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:bit   main   pre   clu   const   while   map   its   ons   

读入可以不需要存入数组

#include<bits/stdc++.h>

#define inf 0x3f3f3f3f

//const int maxn=;

using namespace std;

int t;

int n;

int main()
{
      scanf("%d",&t);
      while(t--){
        map<int, int> m;
        scanf("%d",&n);
        int ans = -inf;
        int cnt = 0;
        int imax = 0;
        int x;
        for(int i = 1; i <= n; ++i){
                scanf("%d",&x);
                if(!m[x]){
                    ++cnt;
                } else {
                        ans = max(ans, cnt);
                        imax = max(imax, m[x] + 1);
                        cnt = i - imax + 1;
                }
                m[x] = i;
        }
        ans = max(ans, cnt);
        printf("%d\n",ans);
      }
    return 0;
}

 

Uva11572

标签:bit   main   pre   clu   const   while   map   its   ons   

原文地址:http://www.cnblogs.com/GeniusYang/p/6724954.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!