# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1117771 | 2024-11-24T08:15:26 Z | vjudge1 | Match (CEOI16_match) | C++17 | 557 ms | 568 KB |
#include <bits/stdc++.h> using namespace std; #define int long long #define ld double const int INF = 1e18; const int mod = 12345; const int sz = 1e6 + 5; bool valid(string q) { if(q.size() == 1) return false; vector < bool > vis(q.size() , false); for(int i = 0;i < q.size() - 1;i++) { if(!vis[i]) { bool f = 0; for(int j = q.size() - 1;j >= 0;j--) { if(q[i] == '(' && q[j] == ')' && !vis[j] && j > i){ f = 1; } vis[i] = vis[j] = 1; } if(!f) return false; } } return true; } bool ok(string q , string s) { vector < bool > vis(sz , 0); for(int i = 0;i < q.size() - 1;i++) { if(!vis[i]) { bool f = 0; for(int j = q.size() - 1;j >= 0;j--) { if(s[i] == s[j] && q[i] == '(' && q[j] == ')' && !vis[j] && j > i){ vis[i] = vis[j] = 1; f = 1; if(i != j - 1){ string z = ""; for(int p = i + 1;p <= j - 1;p++) { z = z + q[p]; } if(!valid(z)) return false; } break; } } if(!f) return false; } } return true; } signed main() { ios_base::sync_with_stdio(0); cin.tie(0); string s; cin >> s; int n = s.size(); string ans = ""; for(int i = 0;i < n;i++) { ans = ans + ')'; ans = ans + ')'; } string nor = ans; for(int bit = 0;bit <= pow(2 , n) - 1;bit++){ string q = ""; for(int i = 0;i < n;i++) { if((1 << i) & bit) q = q + '('; else q = q + ')'; } if(ok(q , s)) { ans = min(ans , q); } } if(ans == nor){ cout << -1 << endl; return 0; } cout << ans << endl; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 504 KB | Output is correct |
2 | Incorrect | 557 ms | 568 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 504 KB | Output is correct |
2 | Incorrect | 557 ms | 568 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 504 KB | Output is correct |
2 | Incorrect | 557 ms | 568 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |