Submission #681406

#TimeUsernameProblemLanguageResultExecution timeMemory
681406vjudge1Match (CEOI16_match)C++14
10 / 100
39 ms16056 KiB
#include <bits/stdc++.h> using namespace std; #define F first #define S second #define pb push_back #define all(a) a.begin(), a.end() typedef long long ll; typedef pair<int, int> ii; const int N = 2000 + 5; const int mod = 1e9 + 7; vector<int> pos['z' + 1]; int f[N][N]; string s; string t; int n; int dp(int l, int r) { if(l > r) return 1; if((r - l + 1) & 1) return 0; int &res = f[l][r]; if(~res) return res; if(s[l] == s[r]) { if(dp(l + 1, r - 1)) { t[l] = '(', t[r] = ')'; return res = 1; } } int tmp = lower_bound(all(pos[s[l]]), r) - pos[s[l]].begin() - 1; while(tmp >= 0 && pos[s[l]][tmp] > l) { int i = pos[s[l]][tmp]; if(dp(l + 1, i - 1) && dp(i + 1, r)) { t[l] = '(', t[i] = ')'; return res = 1; } tmp--; } return res = 0; } void solve() { cin >> s; int n = s.size(); t.resize(n); for(int i = 0; i < n; i++) pos[s[i]].pb(i); memset(f, -1, sizeof f); if(dp(0, n - 1)) cout << t; else cout << -1; } signed main() { cin.tie(0)->sync_with_stdio(0); int t = 1; // cin >> t; while(t--) solve(); return 0; }

Compilation message (stderr)

match.cpp: In function 'int dp(int, int)':
match.cpp:36:39: warning: array subscript has type 'char' [-Wchar-subscripts]
   36 |     int tmp = lower_bound(all(pos[s[l]]), r) - pos[s[l]].begin() - 1;
      |                                       ^
match.cpp:7:16: note: in definition of macro 'all'
    7 | #define all(a) a.begin(), a.end()
      |                ^
match.cpp:36:39: warning: array subscript has type 'char' [-Wchar-subscripts]
   36 |     int tmp = lower_bound(all(pos[s[l]]), r) - pos[s[l]].begin() - 1;
      |                                       ^
match.cpp:7:27: note: in definition of macro 'all'
    7 | #define all(a) a.begin(), a.end()
      |                           ^
match.cpp:36:56: warning: array subscript has type 'char' [-Wchar-subscripts]
   36 |     int tmp = lower_bound(all(pos[s[l]]), r) - pos[s[l]].begin() - 1;
      |                                                        ^
match.cpp:37:31: warning: array subscript has type 'char' [-Wchar-subscripts]
   37 |     while(tmp >= 0 && pos[s[l]][tmp] > l)
      |                               ^
match.cpp:39:25: warning: array subscript has type 'char' [-Wchar-subscripts]
   39 |         int i = pos[s[l]][tmp];
      |                         ^
match.cpp: In function 'void solve()':
match.cpp:56:17: warning: array subscript has type 'char' [-Wchar-subscripts]
   56 |         pos[s[i]].pb(i);
      |                 ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...