# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
336731 |
2020-12-16T15:15:52 Z |
Sho10 |
Match (CEOI16_match) |
C++14 |
|
887 ms |
524292 KB |
#include <bits/stdc++.h> //Andrei Alexandru a.k.a Sho10
#define ll long long
#define double long double
#pragma GCC optimize("O3")
#pragma GCC optimize("Ofast")
#define all(a) (a).begin(), (a).end()
#define f first
#define s second
#define pb push_back
#define mp make_pair
#define pi pair
#define rc(s) return cout<<s,0
#define endl '\n'
#define mod 1000000007
#define PI 3.14159265359
#define MAXN 100005
#define INF 1000000005
#define LINF 1000000000000000005ll
#define CODE_START ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
int n;
string s;
vector<int>v;
void calc(int l,int r){
if(l>r){
return;
}
if(s[l]==s[r]){
cout<<'(';
calc(l+1,r-1);
cout<<')';
return;
}
int mid=v[r];
if(s[mid-1]!=s[l]){
mid=v[mid-1];
}
cout<<'(';
calc(l+1,mid-2);
cout<<')';
calc(mid,r);
}
int32_t main(){
CODE_START;
cin>>s;
n=s.size();
for(int i=0;i<n;i++)
{
if(!v.empty()&&s[v.back()]==s[i]){
v.pop_back();
}else v.pb(i);
}
if(v.size()){
rc("-1");
}
v.assign(n,-1);
for(int i=1;i<n;i++)
{
v[i]=i-1;
while(v[i]>=0&&s[v[i]]!=s[i]){
v[i]=v[v[i]]-1;
}
}
calc(0,n-1);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
4 |
Runtime error |
887 ms |
524292 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
4 |
Runtime error |
887 ms |
524292 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
5 |
Halted |
0 ms |
0 KB |
- |