回 帖 发 新 帖 刷新版面

主题:有哪位高手帮我改一下错.

TimeLimit:10s 
MemoryLimit:32 MB 
Broken Necklace
You have a necklace of N red, white, or blue beads (3<=N<=350) some of which are red, others blue, and others white, arranged at random. Here are two examples for n=29: 

                1 2                               1 2
            r b b r                           b r r b
          r         b                       b         b
         r           r                     b           r
        r             r                   w             r
       b               r                 w               w
      b                 b               r                 r
      b                 b               b                 b
      b                 b               r                 b
       r               r                 b               r
        b             r                   r             r
         b           r                     r           r
           r       r                         r       b
             r b r                             r r w
            Figure A                         Figure B
                        r red bead
                        b blue bead
                        w white bead

The beads considered first and second in the text that follows have been marked in the picture. 

The configuration in Figure A may be represented as a string of b's and r's, where b represents a blue bead and r represents a red one, as follows: brbrrrbbbrrrrrbrrbbrbbbbrrrrb . 

Suppose you are to break the necklace at some point, lay it out straight, and then collect beads of the same color from one end until you reach a bead of a different color, and do the same for the other end (which might not be of the same color as the beads collected before this). 

Determine the point where the necklace should be broken so that the most number of beads can be collected. 

Example 
For example, for the necklace in Figure A, 8 beads can be collected, with the breaking point either between bead 9 and bead 10 or else between bead 24 and bead 25. 

In some necklaces, white beads had been included as shown in Figure B above. When collecting beads, a white bead that is encountered may be treated as either red or blue and then painted with the desired color. The string that represents this configuration will include the three symbols r, b and w. 

Write a program to determine the largest number of beads that can be collected from a supplied necklace. 

INPUT FORMAT
Line 1:  N, the number of beads 
Line 2:  a string of N characters, each of which is r, b, or w 

SAMPLE INPUT 
29
wwwbbrwrbrbrrbrbrwrwwrbwrwrrb

OUTPUT FORMAT
A single line containing the maximum of number of beads that can be collected from the supplied necklace. 
SAMPLE OUTPUT 
11

OUTPUT EXPLANATION
Consider two copies of the beads (kind of like being able to runaround the ends). The string of 11 is marked. 
wwwbbrwrbrbrrbrbrwrwwrbwrwrrb wwwbbrwrbrbrrbrbrwrwwrbwrwrrb
                       ****** *****

 


#include<iostream.h>
struct necklace{
    char ch;
    int flag;
};
int Find(necklace* ch,int size)
{
    int i=0,j=0,k=0;
//    int max=0;
    char de=NULL;
    int count_r = 1,count_l = 1;
    int* temp = new int[size];
     for(int s=0;s<size;s++)
         temp[s]=0;
    for(i;i<size;i++){
        //i=0;
        for(int l=0;l<size;l++)
        {
            ch[l].flag=0;
    //        temp[l] = 0;
        }
        count_r = 1;
        count_l = 1;
        if(ch[i].ch=='w'||ch[i].ch==ch[i-1].ch||ch[i].ch==ch[i+1].ch)
            count_r++;
         ch[i].flag = 1;
        de = ch[(i+1)%size].ch;
        ch[(i+1)%size].flag=1;
        for(j=(i+2)%size;;j++){
            j = j%size;
            if(de=='w'){
            //    count_r++;
                if(ch[j].ch=='w'&&ch[j].flag==0){
                    count_r++;
                    ch[j].flag=1;
                    continue;
                }
                if(ch[j].ch!='w'&&ch[j].flag==0){
                    count_r++;
                    ch[j].flag=1;
                    de = ch[j].ch;
                    continue;
                }else break;
            }
            if((ch[j].ch==de||ch[j].ch=='w')&&ch[j].flag==0)
            {
                count_r++;
                ch[j].flag=1;
            }else break;
        }
        de = ch[(size+i-1)%size].ch;
        if(ch[(size+i-1)%size].flag==1){
            count_l = 0;
//            cout<<"  ccc "<<count_r<<endl;
            temp[i] = count_r+count_l;
            continue;
        }
        ch[(size+i-1)%size].flag=1;
        for(k=(size+i-2)%size;;k--){
            k = (k+size)%size;
            if(de=='w'){
                if(ch[k].ch=='w'&&ch[k].flag==0)
                {
                    count_l++;
                    ch[k].flag=1;
                    continue;
                }
                if(ch[k].ch!='w'&&ch[k].flag==0){
                    count_l++;
                    ch[k].flag=1;
                    de = ch[k].ch;
                    continue;
                }else break;
            }
            if((ch[k].ch==de||ch[k].ch=='w')&&ch[k].flag==0){
                count_l++;
                ch[k].flag=1;
            }else break;
        }
//         cout<<count_r<<" "<<count_l;
        temp[i] = count_r+count_l;
//         cout<<temp[i]<<endl;
    }

    int max = temp[0];
    for(int p=0;p<size-1;p++){
        if(max<=temp[p+1])
            max = temp[p+1];
    
    }

    return max;
}

int main()
{
    int times;
    int size;
    int result;
    cin>>times;
    while(times>0){
        result=0;
        cin>>size;
        char* ch = new char[size+1];
        cin>>ch;
        necklace* chh = new necklace[size];
        for(int i=0;i<size;i++)
            chh[i].ch = ch[i];
        result = Find(chh,size);
        cout<<result<<endl;
        times--;
    }
    return 0;
}

回复列表 (共4个回复)

沙发

程序设计习惯上来讲,你缺少程序运行结束前的指针释放
现在运行成什么样子?

板凳

你来说说你的算法

3 楼

这个程序运行是没错的,但有些数据运行时答案不正确,但我一直找不到程序哪错了,有另位能帮我改一下吗,我改了很久都找不到错啊

4 楼

你觉得别人在对着一大堆不知道具体要干嘛的程序,会喜欢看吗

OI和ACM的题最考验的是耐心和细心,很多边边角角的地方要考虑到。

我来回复

您尚未登录,请登录后再回复。点此登录或注册