-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2070B.cpp
More file actions
56 lines (46 loc) · 984 Bytes
/
Copy path2070B.cpp
File metadata and controls
56 lines (46 loc) · 984 Bytes
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
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int dis(string s) {
int pos=0;
for(int i=0;i<s.size();i++) {
if(s[i]=='L') pos--;
else pos++;
if(pos==0) return i+1;
}
return -1;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin >> t;
while (t--) {
int n, x;
cin >> n >> x;
ll k;
cin >> k;
string s;
cin >> s;
int ind = 0;
ll count = 0;
ll sec = k;
while (ind != n && sec >0) {
x += (s[ind] == 'L' ? -1 : 1);
sec--;
if (x == 0) {
ind = 0;
count++;
int rem=dis(s);
if(rem!=-1) {
count+=sec/rem;
break;
}
} else {
ind++;
}
}
cout << count << '\n';
}
return 0;
}