boj 439

本文介绍如何利用STL map解决一个简单的编程问题,强调了细心编程的重要性,并提供了完整代码示例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

水题,用到STL map,还是得细心点,不要少写了逻辑上应该的操作。

代码:

#include<iostream>
#include<map>
using namespace std;

map<int,int>ElementStore;

int main()
{
	int n,m;
	scanf("%d",&n);
	while(n--)
	{
		int maxlen=-1;
		int curpos=0;
		int tmplen=0;
		ElementStore.clear();
		scanf("%d",&m);
		for(int i=0;i<m;i++)
		{
			int tmp;
			scanf("%d",&tmp);
			if(ElementStore.size()&&ElementStore.find(tmp)!=ElementStore.end())
			{
				int tmpcur=ElementStore.find(tmp)->second;
				ElementStore.erase(tmp);
				if(tmpcur>=curpos)
				{
				maxlen<tmplen?maxlen=tmplen:maxlen;
				tmplen=i-tmpcur;
				curpos=tmpcur+1;
				}
				else
					tmplen++;
			}
			else
				tmplen++;
			ElementStore.insert(pair<int,int>(tmp,i));
		}
		maxlen<tmplen?maxlen=tmplen:maxlen;
		printf("%d\n",maxlen);
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值