제출 #974710

#제출 시각아이디문제언어결과실행 시간메모리
974710AbitoStreet Lamps (APIO19_street_lamps)C++17
20 / 100
1 ms856 KiB
#include <bits/stdc++.h>
#define F first
#define S second
#define pb push_back
#define ppb pop_back
#define ep insert
#define endl '\n'
#define elif else if
#define pow pwr
#define sqrt sqrtt
//#define int long long
#define ll long long
typedef unsigned long long ull;
using namespace std;
const int N=105+5;
int n,q;
bool a[N][N];
int32_t main(){
    ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
    cin>>n>>q;
    for (int i=1;i<=n;i++){
        char c;cin>>c;
        if (c=='1') a[0][i]=1;
    }
    for (int i=1;i<=q;i++){
        for (int j=1;j<=n;j++) a[i][j]=a[i-1][j];
        string s;
        cin>>s;
        if (s=="toggle"){
            int x;cin>>x;
            a[i][x]=!a[i][x];
            continue;
        }
        int l,r,ans=0;cin>>l>>r;
        for (int j=0;j<i;j++){
            bool ok=true;
            for (int k=l;k<r;k++) ok&=a[j][k];
            ans+=ok;
        }
        cout<<ans<<endl;
    }
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...