USACO Section 1.1 Broken Necklace

来源:互联网 发布:手机编程工具排行榜 编辑:程序博客网 时间:2024/06/07 20:26

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 can include any of 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.

PROGRAM NAME: beads

INPUT FORMAT

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

SAMPLE INPUT (file beads.in)

29wwwbbrwrbrbrrbrbrwrwwrbwrwrrb

OUTPUT FORMAT

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

SAMPLE OUTPUT (file beads.out)

11


刚开始做的时候太想当然了,对圆环型也不会处理。看了别人的代码才觉得自己像个弱智。。

复制一份文本加在尾部,逐个模拟,控制范围。


#include<bits/stdc++.h>using namespace std;//#define cout fout//#define cin finstring str;int find_pos(int i,int v){    while(str[i]=='w')        v==1?++i:--i;    return i;}int main() {    //ofstream fout ("beads.out");    //ifstream fin  ("beads.in");    int n,tmp;    cin>>n>>str;    int ans=0;    str=' ' + str + str;    for(int i = 1; i <= n; ++i)    {        int tmp1=0,tmp2=0,cut = i+n-1,pos1=find_pos(i,1),pos2=find_pos(cut,2);        for(int j = i; j <= cut; ++j)        {            ++tmp1;            if(str[j+1]!='w' && str[j+1]!=str[pos1])                break;        }        tmp=tmp1;        for(int j = cut; j >= i+tmp; --j)        {            ++tmp2;            if(str[j-1]!='w' && str[j-1]!=str[pos2])                break;        }        ans = max(ans,tmp1+tmp2);    }    cout<<ans<<endl;    return 0;}