Broken Necklace
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
****** *****
// : ,
, , ,
#i nclude<fstream>
#i nclude<iostream>
#i nclude<string>
using namespace std;
ifstream fcin("beads.in");
ofstream fcout("beads.out");
void search(string s)
{
bool B = 0 ,R = 0; for(int i = 0;i < s.size();i++) { if(s[i] == 'b') B = true; else if(s[i] == 'r') R = true; }
if(!B || !R) { fcout << s.size() << endl; } else { int mxc_nt = 0,c_nt1 = 0,c_nt2 = 0; for(int i = 0;i < s.size(); i++) { char Left ,Right ; int p1 = (i-1+s.size())%s.size(), p2 = i ; int p3 = p1; while(s[p3%s.size()] =='w') p3--; Left = s[p3%s.size()];
p3 = p2; while(s[p3%s.size()] =='w') p3++; Right = s[p3%s.size()]; while(s[(p1+s.size())%s.size()] == Left ||s[(p1+s.size())%s.size()] == 'w' ){ c_nt1++; p1--;} while((s[p2%s.size()] == Right||s[p2%s.size()] == 'w')&& (p2%s.size()!= (p1 +1 +s.size())%s.size()) ){ c_nt2++; p2++;} if(mxc_nt < c_nt1 + c_nt2) mxc_nt = c_nt1+c_nt2; c_nt1 = c_nt2 = 0; } fcout << mxc_nt << endl; }}int main(){
string s; int num; char tp; fcin >> num; for(int i = 0;i < num;i++) { fcin >> tp; s.append(1,tp); }
search(s);
//system("pause");
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Docker를 사용한 React 및 .NET Core 6.0 샘플 프로젝트 - 1부이 기사에서는 Entity Framework Core Code First 접근 방식을 사용하는 ASP.NET Core 6.0 WEP API의 CRUD(만들기, 읽기, 업데이트 및 삭제) 작업에 대해 설명합니다. 웹 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.