# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1176250 | sofija6 | Homework (CEOI22_homework) | C++20 | 54 ms | 38700 KiB |
#include <bits/stdc++.h>
#define ll int
using namespace std;
string s;
ll n,pos;
pair<ll,ll> Solve()
{
if (s[pos]=='?')
{
pos++;
return {1,n};
}
ll t=0;
if (s[pos+1]=='a')
t=1;
pos+=4;
pair<ll,ll> x=Solve();
pos++;
pair<ll,ll> y=Solve();
pos++;
if (t)
return {x.first+y.first,max(x.second,y.second)};
return {min(x.first,y.first),x.second+y.second-n-1};
}
int main()
{
ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
cin >> s;
for (ll i=0;i<s.size();i++)
n+=s[i]=='?';
# | 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... |