37382023-03-02 16:23:54Erik_GepardTáblajátékcpp17Accepted 50/503ms3792 KiB
#include <bits/stdc++.h>
using namespace std;

void solve(){
    int k;
    cin>>k;
    int sor=0;
    vector<int> hely(1, 0);
    while(k--){
        int lep;
        cin>>lep;
        switch (lep){
            case 0:
                sor++;
                hely.push_back(0);
                break;
            case 1:
                sor++;
                hely.push_back(1);
                break;
            case 2:
                sor--;
                hely.pop_back();
                break;
            case 3:
                for(int i=hely.size()-1; i>=0; i--){
                    if(hely[i]==0) hely[i]=1;
                    else{
                        hely[i]=0;
                        break;
                    }
                }
                break;
            case 4:
                for(int i=hely.size()-1; i>=0; i--){
                    if(hely[i]==1) hely[i]=0;
                    else{
                        hely[i]=1;
                        break;
                    }
                }
                break;
        }
    }
    cout<<sor<<"\n";
    int q=0;
    while(hely[q]==0 && q<hely.size()-1){
        q++;
    }
    for(; q<hely.size(); q++){
        cout<<hely[q]<<"";
    }
}

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    solve();
    return 0;
}
SubtaskSumTestVerdictTimeMemory
base50/50
1Accepted0/03ms1832 KiB
2Accepted0/03ms2056 KiB
3Accepted3/33ms2228 KiB
4Accepted3/32ms2448 KiB
5Accepted3/32ms2676 KiB
6Accepted3/33ms2844 KiB
7Accepted3/32ms2876 KiB
8Accepted3/33ms3008 KiB
9Accepted3/32ms3220 KiB
10Accepted3/33ms3232 KiB
11Accepted3/33ms3360 KiB
12Accepted3/32ms3444 KiB
13Accepted4/42ms3576 KiB
14Accepted4/43ms3656 KiB
15Accepted4/42ms3652 KiB
16Accepted4/43ms3656 KiB
17Accepted4/43ms3792 KiB