# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
725842 | 2023-04-18T07:24:33 Z | Baytoro | Homework (CEOI22_homework) | C++17 | 128 ms | 131292 KB |
#include <bits/stdc++.h> using namespace std; #define ios ios::sync_with_stdio(false); cin.tie(NULL);cout.tie(NULL); #define pb push_back #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() #define fr first #define sc second #define endl '\n' #define ll long long #define int long long void fopn(string name){ freopen((name+".in").c_str(),"r",stdin); freopen((name+".out").c_str(),"w",stdout); } const ll INF=1e18,mod=1e9+9,N=1e6+5; vector<int> g[N]; int t[N]; int dfs(int x, int c){ //cout<<x<<endl; if(t[x]!=c) return 0; for(auto it: g[x]){ if(t[it]) return 1+dfs(it,c); } return 1; } void solve(){ string s;cin>>s;int n=s.size(), m=0; stack<int> st; int cur=0; for(int i=0;i<n;i++){ if(s[i]=='n'){ cur++; if(!st.empty()){ g[st.top()].pb(cur); } t[cur]=1; st.push(cur); } if(s[i]=='x'){ cur++; if(!st.empty()){ g[st.top()].pb(cur); } t[cur]=2; st.push(cur); } if(s[i]=='?'){ cur++;m++; g[st.top()].pb(cur); } if(s[i]==')') st.pop(); } assert(st.empty()); cout<<m-max(dfs(1,1),dfs(1,2)); } main(){ //fopn("team"); ios; int T=1; //cin>>T; for(int i=1;i<=T;i++){ //cout<<"Case #"<<i<<": "; solve(); } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 13 ms | 23764 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 13 ms | 23764 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 128 ms | 131292 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 13 ms | 23764 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 13 ms | 23764 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |