10103_BrokenNecklace

2022-5-16 18:16| 发布者: Hocassian| 查看: 85| 评论: 0|原作者: 肇庆学院ACM合集

摘要:
C:\Users\Administrator\Downloads\2019-10-12-10-14-3-89504544583000-Problem List-采集的数据-后羿采集器.html

Pro.ID

10103

Title

Broken Necklace

Title链接

http://10.20.2.8/oj/exercise/problem?problem_id=10103

AC

116

Submit

381

Ratio

30.45%

时间&空间限制

  • Time Limit: 400/200 MS (Java/Others)     Memory Limit: 65536/65536 K (Java/Others)
  • 描述

    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.

    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.

    输入

    Line 1:  N, the number of beads

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

    输出

    Description

    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.

    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

    Line 1:  N, the number of beads

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

    Output

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

    Sample Input

    29
    wwwbbrwrbrbrrbrbrwrwwrbwrwrrb

    Sample Output

    11

    Hint

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

                          original 'split'
                                 v
    wwwbbrwrbrbrrbrbrwrwwrbwrwrrb|wwwbbrwrbrbrrbrbrwrwwrbwrwrrb
                           ******|*****                      
                           rrrrrb|bbbbb  <-- assignments
                           5 x r  6 x b  <-- 11 total

    Source

    样例输入

    29
    wwwbbrwrbrbrrbrbrwrwwrbwrwrrb

    样例输出

    11

    提示

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

                          original 'split'
                                 v
    wwwbbrwrbrbrrbrbrwrwwrbwrwrrb|wwwbbrwrbrbrrbrbrwrwwrbwrwrrb
                           ******|*****                      
                           rrrrrb|bbbbb  <-- assignments
                           5 x r  6 x b  <-- 11 total


    路过

    雷人

    握手

    鲜花

    鸡蛋

    最新评论

    返回顶部