Submission #67341

#TimeUsernameProblemLanguageResultExecution timeMemory
67341MatheusLealVMatch (CEOI16_match)C++17
37 / 100
2043 ms26392 KiB
#include <bits/stdc++.h> #define N 100050 #define f first #define s second using namespace std; typedef pair<int, int> pii; int n, v[N]; string s; char resp[N]; inline bool solve(int l, int r) { if(r < l) return 1; if(r - l == 1) { resp[l] = '(', resp[r] = ')'; return (v[l] == v[r]); } if(l == r) return 0; stack<int> open; for(int j = r; j > l; j--) { if(!open.empty()) { int t = open.top(); if(t == v[j]) open.pop(); else open.push(v[j]); } else { if(v[l] == v[j]) { resp[l] = '(', resp[j] = ')'; return (solve(l + 1, j - 1) and solve(j + 1, r)); } open.push(v[j]); } } return 0; } int main() { ios::sync_with_stdio(false); cin.tie(0); cin>>s; n = s.size(); for(int i = 1; i <= n; i++) v[i] = s[i - 1] - 'a'; if(solve(1, n)) { for(int i = 1; i<= n; i++) cout<<resp[i]; cout<<"\n"; } else cout<<"-1\n"; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...