-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathC. Frog Jumps.cpp
53 lines (39 loc) · 873 Bytes
/
C. Frog Jumps.cpp
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
#include <bits/stdc++.h>
using namespace std;
#define _ ios_base::sync_with_stdio(0); cin.tie(0);
bool possible(int size, int d, string &s)
{
int i = -1;
while(true)
{
if(i + d >= size) return true;
for (int j = d; j >= 0; j--)
{
if (j == 0)
return false;
else if(s[i + j] == 'R')
{
i += j;
break;
}
}
}
}
int main() { _
int n;
cin >> n;
while(n--)
{
string s;
cin >> s;
int left = 1, right = s.length() + 1;
int middle;
while (left < right)
{
middle = (left + right)/ 2;
if(possible(s.length(), middle, s)) right = middle;
else left = middle + 1;
}
cout << left << '\n';
}
}