# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
609770 | DanerZein | Match (CEOI16_match) | C++14 | 2093 ms | 12768 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAX_N=1e5+10;
int n;
string x;
string ans;
int rabc[MAX_N][30];
int maxr(int l,int r){
rabc[r][x[r]-'a']=r;
if(rabc[r][x[l]-'a']!=-1) return rabc[r][x[l]-'a'];
stack<int> st;
st.push(r);
for(int j=r-1;j>=l;j--){
if(st.empty() || x[st.top()]!=x[j]){
st.push(j);
}
else{
int i=st.top();
st.pop();
if(st.empty()){
if(rabc[r][x[j]-'a']==-1) rabc[r][x[j]-'a']=i;
if(rabc[r][x[l]-'a']!=-1)
break;
}
}
}
return rabc[r][x[l]-'a'];
}
void match(int l,int r){
if(l>=r){
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |