# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
129220 | 2019-07-11T20:50:04 Z | thanos | parentrises (BOI18_parentrises) | C++14 | 2 ms | 380 KB |
#include<iostream> #include<string> #include<stack> using namespace std; string s; bool v[1000005],vv[1000005]; int c[1000005]; void initialise(int p){ s.clear(); for(int i=0; i<=p+3; i++){ v[i]=false; vv[i]=false; c[i]=0; } } int main(){ int P; cin>>P; if(P==2){ cout<<0<<endl; return 0; } int T; cin>>T; int prev=0; for(int k=0; k<T; k++){ bool f=true; initialise(prev); //c,s,v,vv[] stack<int> myst; //bool v[10005]={false},vv[100005]={false}; cin>>s; for(int i=0; i<s.length(); i++){ if(s[i]=='('){ myst.push(i); } else{ if(!myst.empty()){ myst.pop(); } else{ v[i]=vv[i]=true; } } } while(!myst.empty()){ v[myst.top()]=vv[myst.top()]=true; myst.pop(); } stack<int> tl,tr; for(int i=0; i<s.length(); i++){ bool g=true; if(vv[i]){ if(s[i]==')'){ g=false; if(!tl.empty()){ v[tl.top()]=true; c[tl.top()]=1; c[i]=2; g=true; tl.pop(); } } } else if(s[i]==')'){ tl.push(i); } if(!g){ cout<<"impossible"<<endl; f=false;; break; } if(vv[s.length()-i-1]){ if(s[s.length()-i-1]=='('){ g=false; if(!tr.empty()){ v[tr.top()]=true; c[tr.top()]=1; c[s.length()-i-1]=2; g=true; tr.pop(); } } } else if(s[s.length()-i-1]=='('){ tr.push(s.length()-i-1); } if(!g){ cout<<"impossible"<<endl; f=false; break; } } if(!f){ continue; } for(int i=0; i<s.length(); i++){ if(c[i]==0){ cout<<"G"; } else if(c[i]==1){ cout<<"B"; } else{ cout<<"R"; } } cout<<endl; prev=s.length(); } return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 380 KB | Output is correct |
2 | Correct | 2 ms | 376 KB | Output is correct |
3 | Correct | 2 ms | 376 KB | Output is correct |
4 | Correct | 2 ms | 376 KB | Output is correct |
5 | Correct | 2 ms | 376 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 248 KB | Output is correct |
2 | Correct | 2 ms | 376 KB | Output is correct |
3 | Correct | 2 ms | 376 KB | Output is correct |
4 | Incorrect | 2 ms | 376 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 248 KB | Output is correct |
2 | Correct | 2 ms | 376 KB | Output is correct |
3 | Correct | 2 ms | 376 KB | Output is correct |
4 | Incorrect | 2 ms | 376 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 248 KB | Output is correct |
2 | Correct | 2 ms | 376 KB | Output is correct |
3 | Correct | 2 ms | 376 KB | Output is correct |
4 | Incorrect | 2 ms | 376 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 252 KB | Output isn't correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 252 KB | Output isn't correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 252 KB | Output isn't correct |