Submission #1036909

# Submission time Handle Problem Language Result Execution time Memory
1036909 2024-07-27T19:33:02 Z vjudge1 Homework (CEOI22_homework) C++17
0 / 100
1000 ms 14076 KB
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define x first
#define y second
string s;
ll n=0;
pair<ll,ll> sol(ll a, ll b)
{
    if(a==b) return {1,n};
    ll temp=a+4;
    ll pl=true;ll c1=0;
    while(pl)
    {
        c1+=(s[temp]=='(');
        c1-=(s[temp]==')');
        if(c1==0&&s[temp]==',') break;
        temp++;
    }
    pair<ll,ll> o1=sol(a+4,temp-1);
    pair<ll,ll> o2=sol(temp+1,b-1);
    if(s[a+2]=='n')
    {
        ll temp1=max(o1.y,o2.y);
        
        return {min(o1.x,o2.x),min(o1.y,o2.y)-1};
    }
    else
    {
        return {max(o1.x,o2.x)+1,max(o1.y,o2.y)};
    }
}
int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);cout.tie(0);
    cin>>s;
    for(auto i:s)n+=(i=='?');

    cout<<(sol(0,s.size()-1).y-sol(0,s.size()-1).x+1);
    return 0;
}

Compilation message

Main.cpp: In function 'std::pair<long long int, long long int> sol(ll, ll)':
Main.cpp:24:12: warning: unused variable 'temp1' [-Wunused-variable]
   24 |         ll temp1=max(o1.y,o2.y);
      |            ^~~~~
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 456 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 456 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1008 ms 14076 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 456 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 456 KB Output isn't correct
3 Halted 0 ms 0 KB -