首页 > 其他 > 详细

Codeforces Round #436 (Div. 2), problem: (B) Polycarp and Letters

时间:2017-10-02 20:04:09      阅读:293      评论:0      收藏:0      [点我收藏+]
#include <cstdio>
#include <map>
using namespace std;
int main(){
	int n,tot,max=0;
	map<char,int> mp;
	char a[210];
	scanf("%d",&n);
	scanf("%s",a);
	for(int i=0;i<n;i++){
		if(a[i]>=‘a‘&&a[i]<=‘z‘){
			mp.clear();
			tot=1;
			mp[a[i]]++;
			i++;
			while(a[i]>=‘a‘&&a[i]<=‘z‘){
				if(!mp.count(a[i])){
					tot++;
					mp[a[i]]++;
				}
				i++;
			}
			//printf("%d\n",tot);
			if(tot>max)	max=tot;
		}
	}
	printf("%d\n",max);
	return 0;
}

Codeforces Round #436 (Div. 2), problem: (B) Polycarp and Letters

原文:http://www.cnblogs.com/LMissher/p/7622174.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!