Codeforces Beta Round #5 C. Longest Regular Bracket Sequence
2043 단어 codeforces수돗물활용단어참조
제목 대의:
가장 긴 '일치' 하위 문자열의 길이와 수량을 구하는 괄호만 있는 문자열을 보여 줍니다.
문제 해결 방법:
괄호 세그먼트의 시작과 일치하는 그룹을 설정합니다.
다음은 코드입니다.
#include <set>
#include <map>
#include <queue>
#include <math.h>
#include <vector>
#include <string>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <iostream>
#include <cctype>
#include <algorithm>
#define eps 1e-10
#define pi acos(-1.0)
#define inf 107374182
#define inf64 1152921504606846976
#define lc l,m,tr<<1
#define rc m + 1,r,tr<<1|1
#define zero(a) fabs(a)<eps
#define iabs(x) ((x) > 0 ? (x) : -(x))
#define clear1(A, X, SIZE) memset(A, X, sizeof(A[0]) * (min(SIZE,sizeof(A))))
#define clearall(A, X) memset(A, X, sizeof(A))
#define memcopy1(A , X, SIZE) memcpy(A , X ,sizeof(X[0])*(SIZE))
#define memcopyall(A, X) memcpy(A , X ,sizeof(X))
#define max( x, y ) ( ((x) > (y)) ? (x) : (y) )
#define min( x, y ) ( ((x) < (y)) ? (x) : (y) )
using namespace std;
char s[1000006];
//char sta[1000006]
int op[10000006];
//int ed[10000006];
int main()
{
scanf("%s",s);
int top=0,len=strlen(s),bt=0;
int max1=0,maxcnt=1;
clearall(op,-1);
for(int i=0; i<len; i++)
{
if(s[i]=='(')
{
if(op[top]==-1)
op[top]=i;
top++;
// ed[top++]=i;
}
else
{
if(top==bt)
{
top++;
bt++;
}
else
{
if(i-op[top-1]+1>max1)
{
max1=i-op[top-1]+1;
maxcnt=1;
}
else if(i-op[top-1]+1==max1)
{
maxcnt++;
}
op[top]=-1;
top--;
}
}
}
printf("%d %d",max1,maxcnt);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.