GUPTA MECHANICAL

IN THIS WEBSITE I CAN TELL ALL ABOUT TECH. TIPS AND TRICKS APP REVIEWS AND UNBOXINGS ALSO TECH. NEWS .............

Sunday 16 October 2022

[Solution] Traffic Light Codeforces Solution




C. Traffic Light
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You find yourself on an unusual crossroad with a weird traffic light. That traffic light has three possible colors: red (r), yellow (y), green (g). It is known that the traffic light repeats its colors every n seconds and at the i-th second the color si is on.

That way, the order of the colors is described by a string. For example, if s="rggry", then the traffic light works as the following: red-green-green-red-yellow-red-green-green-red-yellow- ... and so on.

More formally, you are given a string s1,s2,,sn of length n. At the first second the color s1 is on, at the second — s2, ..., at the n-th second the color sn is on, at the n+1-st second the color s1 is on and so on.

You need to cross the road and that can only be done when the green color is on.

You know which color is on the traffic light at the moment, but you don't know the current moment of time. You need to find the minimum amount of time in which you are guaranteed to cross the road.

You can assume that you cross the road immediately.

For example, with s="rggry" and the current color r there are two options: either the green color will be on after 1 second, or after 3. That way, the answer is equal to 3 — that is the number of seconds that we are guaranteed to cross the road, if the current color is r.

Input

The first line contains a single integer t (1t104) — the number of test cases.

Then the description of the test cases follows.

The first line of each test case contains an integer n and a symbol c (1n2105c is one of allowed traffic light colors ry or g)— the length of the string s and the current color of the traffic light.

Solution Click Below:-  👉CLICK HERE👈
👇👇👇👇👇

The second line of each test case contains a string s of the length n, consisting of the letters ry and g.

It is guaranteed that the symbol g is in the string s and the symbol c is in the string s.

It is guaranteed, that the sum of n over all test cases does not exceed 2105.

Output

For each test case output the minimal number of second in which you are guaranteed to cross the road.

Note

The first test case is explained in the statement.

In the second test case the green color is on so you can cross the road immediately.

In the third test case, if the red color was on at the second second, then we would wait for the green color for one second, and if the red light was on at the first second, then we would wait for the green light for two seconds.

In the fourth test case the longest we would wait for the green color is if we wait for it starting from the fifth second.

No comments:

Post a Comment