zoukankan      html  css  js  c++  java
  • USACO1.1Broken Necklace

    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.

    PROGRAM NAME: beads

    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 (file beads.in)

    29
    wwwbbrwrbrbrrbrbrwrwwrbwrwrrb

    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

    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
    ****** *****
    rrrrrb bbbbb <-- assignments
    5 x r 6 x b <-- 11 total




    记得队长寒假的时候把这题给加到我们比赛中 当时觉得很难 想了很久也没做出来 现在去看看 还是挺简单的 就是简单的枚举
    View Code
      1 /*
      2 ID: your_id_here
      3 LANG: C++
      4 TASK: beads
      5 */
      6 
      7 #include <iostream>
      8 #include<cstdio>
      9 #include<string.h>
     10 using namespace std;
     11 int main()
     12 {
     13     freopen("beads.in","r",stdin);
     14     freopen("beads.out","w",stdout);
     15     int i,j,k,n,m,max = 0,x;
     16     char c[1100];
     17     scanf("%d%*c",&n);
     18     for(i = 1; i <= n ; i++)
     19     scanf("%c",&c[i]);
     20     for(i = n+1; i <= 2*n; i++)
     21     c[i] = c[i-n];
     22     for(i = 2*n+1 ; i <= 3*n ; i++)
     23     c[i] = c[i-2*n];
     24     for(i = n+1 ; i <= 2*n ; i++)
     25     {
     26         int le = 0,ri = 0,flag =0;
     27         m = 0;
     28         for(j = i ; j <= 3*n ; j++)
     29         {
     30             if(flag==0)
     31             {
     32                 if(c[j]=='w')
     33                 m++;
     34                 else
     35                 if(c[j]=='b')
     36                 {
     37                     flag = 1;
     38                     ri+=m+1;
     39                 }
     40                 else
     41                 {
     42                     flag = 2;
     43                     ri+=m+1;
     44                 }
     45             }
     46             else
     47             {
     48                 if(c[j]=='w')
     49                 ri++;
     50                 else
     51                 if((c[j]=='b'&&flag==1)||(c[j]=='r'&&flag==2))
     52                 ri++;
     53                 else
     54                 {
     55                     break;
     56                 }
     57             }
     58         }
     59         if(flag==0)
     60         ri = m;
     61         x = i-1;
     62         flag = 0;
     63         m = 0;
     64         for(j = x ; j >= 1 ; j--)
     65         {
     66             if(flag==0)
     67             {
     68                 if(c[j]=='w')
     69                 m++;
     70                 else
     71                 if(c[j]=='b')
     72                 {
     73                     flag = 1;
     74                     le+=m+1;
     75                 }
     76                 else
     77                 {
     78                     flag = 2;
     79                     le+=m+1;
     80                 }
     81             }
     82             else
     83             {
     84                 if(c[j]=='w')
     85                 le++;
     86                 else
     87                 if((c[j]=='b'&&flag==1)||(c[j]=='r'&&flag==2))
     88                 le++;
     89                 else
     90                 break;
     91             }
     92         }
     93         if(flag==0)
     94         le = m;
     95         if(ri+le>max)
     96         max = ri+le;
     97     }
     98     if(max>n)
     99     max = n;
    100     printf("%d\n",max);
    101     fclose(stdin);
    102     fclose(stdout);
    103     return 0;
    104 }


  • 相关阅读:
    Java输出错误信息与调试信息
    Java实现两个变量的互换(不借助第3个变量)
    Java用三元运算符判断奇数和偶数
    使用webpack-dev-server设置反向代理解决前端跨域问题
    springboot解决跨域问题(Cors)
    Spring boot集成swagger2
    Redis学习汇总
    【年终总结】2017年迟来的总结
    Springboot项目maven多模块拆分
    Maven实现多环境打包
  • 原文地址:https://www.cnblogs.com/shangyu/p/2644473.html
Copyright © 2011-2022 走看看