# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1165775 | SmuggingSpun | Street Lamps (APIO19_street_lamps) | C++20 | 1304 ms | 19272 KiB |
#include<bits/stdc++.h>
#define taskname "C"
using namespace std;
int n, q;
string s;
namespace sub1{
void solve(){
vector<string>state;
for(int _ = 0; _ < q; _++){
string _t;
cin >> _t;
state.emplace_back(s);
if(_t == "toggle"){
int i;
cin >> i;
s[i] = (s[i] == '0' ? '1' : '0');
}
else{
int a, b, ans = state.size();
cin >> a >> b;
for(string& S : state){
for(int i = a; i < b; i++){
if(S[i] == '0'){
ans--;
break;
}
}
}
cout << ans << "\n";
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |