题目:

Emily the entrepreneur has a cool business idea: packaging and selling snowflakes.

She has devised a machine that captures snowflakes as they fall, and serializes them into a stream of snowflakes that flow, one by one, into a package.

Once the package is full, it is closed and shipped to be sold. The marketing motto for the company is “bags of uniqueness.” To live up to the motto,

every snowflake in a package must be different from the others. Unfortunately, this is easier said than done, because in reality, many of the snowflakes flowing through the machine are identical.

Emily would like to know the size of the largest possible package of unique snowflakes that can be created. The machine can start filling the package at any time,

but once it starts, all snowflakes flowing from the machine must go into the package until the package is completed and sealed.

The package can be completed and sealed before all of the snowflakes have flowed out of the machine.

Input

The first line of input contains one integer specifying the number of test cases to follow.

Each test case begins with a line containing an integer n, the number of snowflakes processed by the machine.

The following n lines each contain an integer (in the range 0 to 109 , inclusive) uniquely identifying a snowflake.

Two snowflakes are identified by the same integer if and only if they are identical.

The input will contain no more than one million total snowflakes.

Output

For each test case output a line containing single integer, the maximum number of unique snowflakes that can be in a package.

Sample Input

1

5

1

2

3

2

1

Sample Output

3

题意:

给你一串数字,要你求最长的没有重复数字的子序列长度;

分析:

求没有重复数字的子序列,用set会更加方便;

窗口滑动:

left  左

right 右

left和right 初始化为1;(我的输入从1—n)

在没有找到相同元素以前,右窗口一直向右移动,碰到相同元素后,左窗口开始向右移动,在移动的同时记录下最大值

如下图(我滴天!画的好吃藕)

AC代码:

#include<iostream>
#include<cstring>
#include<set>
#include<cstdio>
using namespace std;
const int N=;
int a[N];
int maxi (int a,int b)
{
return a>b?a:b;
}
int main()
{
int t,n;
set<int>s;
cin>>t;
while (t--)
{
s.clear();
cin>>n;
for (int i=;i<=n;i++)
cin>>a[i];
int left=,right=,num=;
while (right<=n)
{
while (right<=n&&!s.count(a[right]))
s.insert(a[right++]);
num=maxi(num,right-left);
s.erase(a[left++]);
}
cout << num << endl;
}
return ;
}

最新文章

  1. Quality 是什么?
  2. Java Security:公钥私钥、数字签名、消息摘要是什么
  3. callee
  4. 使用SQL对数据进行整理
  5. 传染病控制(codevs 1091)
  6. gen already exists but is not a source folder ZT
  7. Web Api 2 怎么支持 Session
  8. 加密解密(9)Diffie-Hellman密钥交换协议
  9. linux grep命令总结
  10. SSH之免密登陆
  11. docker进阶-搭建私有企业级镜像仓库Harbor
  12. mysql中explain的type的解释
  13. k倍区间
  14. Cocos Creator 节点
  15. mysql utf8mb4 设置
  16. CSS:Float
  17. 介绍——基于类的视图(class-based view)
  18. [self.view addSubview:vc2.view]程序崩溃的解决办法
  19. Vue指令的钩子函数使用方法
  20. mybatis入参方式和缓冲

热门文章

  1. Kali 安装 Google 中文输入法
  2. apt GPG error
  3. 有关iOS热更新
  4. CPA-计划
  5. dbgview 在windows 10 中关闭后再次打开时无法“capture kernel”
  6. 分层结构与MVC模式
  7. 吴裕雄--天生自然C语言开发:enum(枚举)
  8. C2. Power Transmission (Hard Edition)(线段相交)
  9. Python语言学习前提:python安装和pycharm安装
  10. 68.26-95.44-99.74 rule|empirical rule