#include <bits/stdc++.h>
using namespace std;
#define ll long long int
#define sz(x) (int)x.size()
#define ff first
#define ss second
const ll N = 305;
const ll M = 1e9 + 7;
int T, n, q, ind1[N], a1[N], b1[N], x[N], y[N];
string s[N], s1[N];
int main(){
ios::sync_with_stdio(false); cin.tie(0);
cin >> n >> q >> s[0];
for(int i = 1; i <= q; i++){
cin >> s1[i];
if(s1[i] == "toggle"){
cin >> ind1[i];
}
else {
cin >> a1[i] >> b1[i];
}
}
if(n <= 100 and q <= 100){
for(int i = 1; i <= q; i++){
s[i] = s[i-1];
if(s1[i] == "toggle"){
int ind = (ind1[i]);
ind--;
if(s[i][ind] == '1') s[i][ind] = '0';
else s[i][ind] = '1';
}
else {
int a = a1[i], b = b1[i], ans = 0;
for(int j = 0; j <= i-1; j++){
bool tr = 0;
for(int k = a-1; k < b-1; k++){
if(s[j][k] == '0'){
tr = 1;
break;
}
}
ans += (tr == 0);
}
cout << ans << '\n';
}
}
}
else {
for(int i = 0; i < sz(s[0]); i++){
if(s[0][i] == 1) x[i] = 0;
else x[i] = -1;
}
for(int i = 1; i <= q; i++){
s[i] = s[i-1];
if(s1[i] == "toggle"){
int ind = (ind1[i]);
ind--;
if(s[0][ind] == '0'){
x[ind] = i;
}
else {
y[i] += abs(i-x[i]);
x[i] = -1;
}
}
else {
int a = a1[i]-1, b = b1[i]-1, ans = y[a];
if(x[a] != -1) ans += (abs(i-x[a])+1);
cout << ans << "\n";
}
}
}
return 0;
}
Compilation message
street_lamps.cpp: In function 'int main()':
street_lamps.cpp:74:22: warning: unused variable 'b' [-Wunused-variable]
74 | int a = a1[i]-1, b = b1[i]-1, ans = y[a];
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
0 ms |
348 KB |
Output is correct |
6 |
Correct |
0 ms |
348 KB |
Output is correct |
7 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
0 ms |
348 KB |
Output is correct |
6 |
Correct |
0 ms |
348 KB |
Output is correct |
7 |
Correct |
0 ms |
348 KB |
Output is correct |
8 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
9 |
Halted |
0 ms |
0 KB |
- |