#include<bits/stdc++.h>
typedef long long ll;
using namespace std;
// struct Interval {
// ll s, e;
// };
// // Function used in sort
// bool mycomp(Interval a, Interval b) { return a.s < b.s; }
// void mergeIntervals(Interval arr[], ll n)
// {
// // Sort Intervals in increasing order of
// // start time
// sort(arr, arr + n, mycomp);
// ll index = 0; // Stores index of last element
// // in output array (modified arr[])
// // Traverse all input Intervals
// for (ll i = 1; i < n; i++) {
// // If this is not first Interval and overlaps
// // with the previous one
// if (arr[index].e >= arr[i].s) {
// // Merge previous and current Intervals
// arr[index].e = max(arr[index].e, arr[i].e);
// }
// else {
// index++;
// arr[index] = arr[i];
// }
// }
// // Now arr[0..index-1] stores the merged Intervals
// //cout << "\n The Merged Intervals are: ";
// ll ans =0;
// for (ll i = 0; i <= index; i++) ans+= arr[i].e-arr[i].s+1;
// cout<<ans<<"\n";
// //cout << "[" << arr[i].s << ", " << arr[i].e << "] ";
// }
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, q; cin>>n>>q;
string str;
cin>>str;
vector<int> v[n];
for(int i=0; i<n; i++){
if(str[i] =='1') v[i].push_back(0);
}
for(int i=1; i<=q; i++){
string mark;
cin>>mark;
if(mark == "toggle"){
int indx;
cin>>indx;
if(str[indx-1] == '1') str[indx-1]='0';
v[indx-1].push_back(i);
}
else{
int l, r; cin>>l>>r;
l-=1;
if(v[l].size()%2 == 0){
int ans =0;
for(int j=0; j<v[l].size(); j+=2){
ans+=v[l][j+1]-v[l][j];
}
cout<<ans<<"\n";
if(ans>0){
v[l].clear();
v[l].push_back(i-ans);
v[l].push_back(i);
}
}
else{
int ans =0;
for(int j=0; j<v[l].size()-1; j+=2){
ans+=v[l][j+1]-v[l][j];
}
//cout<<i<<" "<<v[l][v[l].size()-1];
ans += i-v[l][v[l].size()-1];
cout<<ans<<"\n";
if(ans>0){
v[l].clear();
v[l].push_back(i-ans);
}
}
}
}
return 0;
}
Compilation message
street_lamps.cpp: In function 'int main()':
street_lamps.cpp:77:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
77 | for(int j=0; j<v[l].size(); j+=2){
| ~^~~~~~~~~~~~
street_lamps.cpp:90:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
90 | for(int j=0; j<v[l].size()-1; j+=2){
| ~^~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
67 ms |
3448 KB |
Output is correct |
2 |
Correct |
67 ms |
4700 KB |
Output is correct |
3 |
Correct |
62 ms |
5828 KB |
Output is correct |
4 |
Correct |
113 ms |
20112 KB |
Output is correct |
5 |
Correct |
126 ms |
23712 KB |
Output is correct |
6 |
Correct |
92 ms |
20140 KB |
Output is correct |
7 |
Correct |
106 ms |
14296 KB |
Output is correct |
8 |
Correct |
139 ms |
25064 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |