# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
725838 | Baytoro | Homework (CEOI22_homework) | C++17 | 129 ms | 132524 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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){
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();
}
cout<<m-max(dfs(1,1),dfs(1,2))<<endl;
}
main(){
//fopn("team");
ios;
int T=1;
//cin>>T;
for(int i=1;i<=T;i++){
//cout<<"Case #"<<i<<": ";
solve();
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |