Submission #1083030

#TimeUsernameProblemLanguageResultExecution timeMemory
1083030weakweakweakHomework (CEOI22_homework)C++17
0 / 100
568 ms524288 KiB
#include <bits/stdc++.h>
using namespace std;
using pii=pair<int,int>;
#define fs first 
#define sc second

int meow = 0;
pii f() {
    char c, cc;
    cin >> c;
    if (c == '?') {
        meow++;
        return {0, 0};
    }
    cin >> cc >> c >> c;
    pii p1 = f();
    cin >> c;
    pii p2 = f();
    if (cc=='a') return {p1.fs+p2.fs+1, min(p1.sc,p2.sc)};
    else return {min(p1.fs,p2.fs), p1.sc+p2.sc+1};
}

int main () {
    ios_base::sync_with_stdio(false); cin.tie(0);
    pii p = f();
    cout << meow - p.fs - p.sc << '\n';
}
#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...