# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
745464 | alexdumitru | 괄호 문자열 (CEOI16_match) | C++14 | 21 ms | 12152 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.
#include <bits/stdc++.h>
using namespace std;
ifstream fin("match.in");
ofstream fout("match.out");
const int NMAX = 100005;
string s;
int n;
int a[NMAX];
int sir[NMAX];
int dp[26][NMAX];
void divide(int st, int dr)
{
if(st > dr)
return;
int pos = dp[a[st]][dr];
sir[st] = 1;
sir[pos] = -1;
divide(st + 1, pos - 1);
divide(pos + 1, dr);
}
void solve()
{
cin >> s;
n = s.length();
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |