# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
170740 | 2019-12-26T08:56:48 Z | dndhk | parentrises (BOI18_parentrises) | C++14 | 4 ms | 376 KB |
#include <bits/stdc++.h> #define all(v) (v).begin(), (v).end() #define sortv(v) sort(all(v)) #define uniqv(v) (v).erase(unique(all(v)), (v).end()) #define pb push_back #define FI first #define SE second #define lb lower_bound #define ub upper_bound #define mp make_pair #define test 1 #define TEST if(test) using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; typedef vector<int> vi; const int MOD = 1000000007; // 998244353 const int INF = 2e9; const ll INFLL = 1e18; const int MAX_N = 1; int P, T; string str; vector<pii> vt; vector<int> ans; int main(){ scanf("%d%d", &P, &T); if(P==1){ while(T--){ bool tf = true; cin>>str; if(str[0]==')'){ printf("impossible\n"); continue; } vt.pb({1, 2}); for(int i=1; i<str.size(); i++){ pii prv = vt.back(); if(str[i]=='('){ prv.first++; prv.second+=2; }else{ prv.first-=2; prv.second--; } if(prv.second<0){ tf = false; break; } prv.first = max(prv.first, 0); vt.pb(prv); } if(vt.back().first!=0){ tf = false; } if(!tf){ printf("impossible\n"); }else{ int num1=0, num2=0; int n = 0; for(int i=str.size()-1; i>=0; i--){ pii now = vt[i]; vt.pop_back(); if(vt.empty()){ if(n==2){ ans.pb(3); }else{ if(num1>0) ans.pb(1); else ans.pb(2); } }else{ if(str[i]=='('){ if(vt.back().first<=n-1 && n-1<=vt.back().second){ if(num1<num2){ ans.pb(2); num2--; }else{ ans.pb(1); num1--; } n--; }else{ ans.pb(3); num1--; num2--; n-=2; } }else{ if(vt.back().first<=n+1 && n+1<=vt.back().second){ if(num1>num2){ ans.pb(2); num2++; }else{ ans.pb(1); num1++; } n++; }else{ ans.pb(3); num1++; num2++; n+=2; } } } } while(!ans.empty()){ if(ans.back()==3){ printf("G"); }else if(ans.back()==2){ printf("B"); }else{ printf("R"); } ans.pop_back(); } printf("\n"); } } }else{ } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 256 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 | 256 KB | Output is correct |
5 | Correct | 2 ms | 376 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 252 KB | Output is correct |
3 | Correct | 2 ms | 376 KB | Output is correct |
4 | Correct | 4 ms | 256 KB | Output is correct |
5 | Correct | 2 ms | 376 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 252 KB | Output is correct |
3 | Correct | 2 ms | 376 KB | Output is correct |
4 | Correct | 4 ms | 256 KB | Output is correct |
5 | Correct | 2 ms | 376 KB | Output is correct |
6 | Correct | 2 ms | 376 KB | Output is correct |
7 | Correct | 2 ms | 376 KB | Output is correct |
8 | Correct | 2 ms | 256 KB | Output is correct |
9 | Incorrect | 2 ms | 376 KB | Output isn't correct |
10 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 252 KB | Output is correct |
3 | Correct | 2 ms | 376 KB | Output is correct |
4 | Correct | 4 ms | 256 KB | Output is correct |
5 | Correct | 2 ms | 376 KB | Output is correct |
6 | Correct | 2 ms | 376 KB | Output is correct |
7 | Correct | 2 ms | 376 KB | Output is correct |
8 | Correct | 2 ms | 256 KB | Output is correct |
9 | Incorrect | 2 ms | 376 KB | Output isn't correct |
10 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 256 KB | Unexpected end of file - int32 expected |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 256 KB | Unexpected end of file - int32 expected |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 256 KB | Unexpected end of file - int32 expected |