# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
62353 | kingpig9 | Match (CEOI16_match) | C++11 | 25 ms | 12732 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
//This is so hard to understand why it even works...
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int MAXN = 1e5 + 10;
#define debug(...) fprintf(stderr, __VA_ARGS__)
#define fi first
#define se second
#define all(v) (v).begin(), (v).end()
#define fillchar(a, s) memset((a), (s), sizeof(a))
int N;
char S[MAXN];
char ans[MAXN];
int prv[MAXN][26];
void rec (int lt, int rt) {
if (lt > rt) {
return;
}
int match = prv[rt][S[lt] - 'a']; //which index you match with?
if (match <= lt) {
//then cannot match
puts("-1");
exit(0);
}
ans[lt] = '(';
ans[match] = ')';
rec(lt + 1, match - 1);
rec(match + 1, rt);
}
int main() {
if (fopen("match.in", "r")) {
freopen("match.in", "r", stdin);
freopen("match.out", "w", stdout);
}
scanf("%s", S);
N = strlen(S);
for (int i = 0; i < N; i++) {
for (int j = 0; j < 26; j++) {
prv[i][j] = -1;
if (j == S[i] - 'a') {
prv[i][j] = i;
} else if (i) {
if (prv[i - 1][S[i] - 'a'] > 0) {
prv[i][j] = prv[prv[i - 1][S[i] - 'a'] - 1][j];
}
}
}
}
rec(0, N - 1);
puts(ans);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |