hdu2668

Daydream

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1907    Accepted Submission(s): 583


Problem Description
Welcome to 2009 HDU Girl’s Cup, bless you will happy in it.
Every girl are beautiful if you use you heart to feel. Every corner in the world will colourful and energetic by several girls standing. If you boy, a normal bay, I believe that you will try to watch when a beautiful girl passing you and you will nervous if a girl watching you just when you are watching her.

Now give you a surprise that may be never happy in the real time. Millions of PLMM stand in a line and facing you(^_^). They are dress colourful clothings. You should to find out a maximal subline PLMM that their clothing color are all different.
 

Input
The input contains multiple test cases.
Each case first give a integer n expressing many many girls stand in line.(n<=10000000)
Next line a string including n character, each character standing one girls’s clothing color.
 

Output
Output one integer the numbers of maximal subline PLMM that their clothing color are all different and the line's begin and end (based from 0). If their are more answer, print the begin smallest.
 

Sample Input
  
  
3 abc 5 aaaba 8 hdugirls
 

Sample Output
  
  
3 0 2 2 2 3

8 0 7

AC代码:

#include<cstring> #include <cstdio> #include<iostream> #include<algorithm> using namespace std; const int N = 1000; char s[10000006]; int mp[N]; int main() {         int n,l,r,curL, len; //l, r 是最终答案         while(~scanf("%d",&n))         {                 getchar();                 gets(s);                 len = 0;                 curL = 0;                 memset(mp,-1,sizeof(mp));                 for(int i = 0; i < n; i++)                 {                         if(mp[s[i]] >= curL)                         {                                 if(i-curL > len)                                 {                                         len = i-curL;                                         l = curL;                                         r = i-1;                                 }                                 curL = mp[s[i]]+1;                         }                         mp[s[i]] = i;                 }                 if(n-curL > len)                 {                         len = n-curL;                         l = curL;                         r = n-1;                 }                 printf("%d %d %d\n", len, l, r);         }         return 0;  }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值