# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1174301 | heeheeheehaaw | Homework (CEOI22_homework) | C++20 | 59 ms | 38680 KiB |
#include <bits/stdc++.h>
using namespace std;
int n, x;
string s;
pair<int, int> solve()
{
if(s[x++] == '?') return {1, n};
char c = s[x];
x += 3;
pair<int, int> a = solve();
x++;
pair<int, int> b = solve();
x++;
if(c == 'i')
{
return {min(a.first, b.first), a.second + b.second - n - 1};
}
else
{
return {a.first + b.first, max(a.second, b.second)};
}
}
int main()
# | 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... |