Algorithm, Data structure/Solved Algorithmic Problem

USACO 1.1 - Broken Necklace

JaykayChoi 2016. 6. 1. 00:30

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 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.

                Two necklace copies joined here
                             v
wwwbbrwrbrbrrbrbrwrwwrbwrwrrb|wwwbbrwrbrbrrbrbrwrwwrbwrwrrb
                       ******|*****
                       rrrrrb|bbbbb  <-- assignments
                   5xr .....#|#####  6xb

                        5+6 = 11 total



출처: http://train.usaco.org/


N개의 red, white, blue 구슬로 구성된 목걸이의 한 지점을 끊어서 일렬로 놓는다고 할 때 앞쪽에서 시작되어 똑같은 색이 있는 구슬과 뒤쪽에서 시작되어 똑같은 색이 있는 구슬을 구하려고 한다 (각 방향의 색이 똑같을 필요 없음) 이때 white 는 어떤 색으로도 편입될 수 있다고 할 때 구할 수 있는 최대 구슬의 개수를 구하는 문제입니다.

1.1 의 마지막 문제입니다. 완전 탐색으로 풀 수 있는 쉬운 문제이지만 1.1의 나머지 세 문제에 비하면 난이도가 있다고 할 수 있는 문제인거 같습니다.



my solving 

c++

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include <iostream>
#include <fstream>
#include <string>
#include <algorithm>
 
using namespace std;
 
int N;
string beads;
 
char getBead(int pos)
{
    while (pos < 0)
        pos += N;
    pos %= N;
 
    return beads[pos];
}
 
int bruteForce(int pos, int dir) 
{
    int ret;
    int position;
    char preBead = 'w';
 
    if (dir == 1
        position = pos;
    else
        position = pos - 1;
    
    for (ret = 0; ret < N; ret++
    {
        if (preBead == 'w' && getBead(position) != 'w')
            preBead = getBead(position);
 
        if (preBead != 'w' && getBead(position) != 'w' && getBead(position) != preBead)
            break;
        position += dir;
    }
    return ret;
}
 
 
int main() 
{
    ofstream fout("beads.out");
    ifstream fin("beads.in");
    
    fin >> N;
    fin >> beads;
 
    int ret = 0;
 
    for (int i = 0; i < N; i++
        ret = max(ret, bruteForce(i, -1+ bruteForce(i, 1));
 
    if (ret > N) 
        ret = N;
 
    fout << ret << endl;
 
    return 0;
}
cs