Star in Parentheses
시간 제한: 1 Sec 메모리 제한: 128 MB
제목 설명
You are given a string S, which is balanced parentheses with a star symbol '*' inserted. Any balanced parentheses can be constructed using the following rules: An empty string is balanced. Concatenation of two balanced parentheses is balanced. If T is balanced parentheses, concatenation of '(', T, and ')' in this order is balanced. For example, '()()' and '(()())' are balanced parentheses. ')(' and ')()(()' are not balanced parentheses. Your task is to count how many matching pairs of parentheses surround the star. Let Si be the i-th character of a string S. The pair of Sl and Sr (l
입력
The input consists of a single test case formatted as follows. S S is balanced parentheses with exactly one '*' inserted somewhere. The length of S is between 1 and 100, inclusive.
출력
Print the answer in one line.
샘플 입력
샘플 데이터 복사
((*)())
샘플 출력
2
제목: 몇 개의 효과 적 인 괄호 가 별 표를 싸 줄 수 있 습 니까? 가 까 운 괄호 와 없 앨 수 있다 면 효과 적 이지 않 습 니 다.
별표 왼쪽 에 나타 나 면 ( , l ++ ,
별표 왼쪽 에 나타 나 기 ) ,만약 l! = 0, l -;
별표 오른쪽 에 나타 나 면 ( , pl ++ ,
별표 오른쪽 에 나타 나 기 ) ,만약 pl! = 0, l -; 그렇지 않 으 면 r + +
그러면 l 과 r 사이 의 최소 값 은 괄호 가 맞 는 개수 입 니 다.
#include
using namespace std;
#define pb push_back
#define mp make_pair
#define rep(i,a,n) for(int i=a;i P;
const int INF =0x3f3f3f3f;
const int inf =0x3f3f3f3f;
const int mod = 1e9+7;
const int MAXN = 105;
const int maxn =1000010;
using namespace std;
char s[15000];
int main(){
scanf("%s",s);
int flag = 0 ;
int r = 0;
int l = 0;
int pl = 0;
for(int i = 0; i < strlen(s);i++){
if(s[i] == '*') {
flag = 1;
}
if(!flag && s[i] =='(')
l++;
else if(!flag && s[i] ==')'){
if(l) l--;
}
else if(flag && s[i] == '('){
pl++;
}
else if(flag && s[i] == ')'){
if(pl) pl --;
else r++;
}
}
printf("%d
",l < r ? l : r);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Sparse Table을 아십니까? 나는 알고 있다.Sparse Table을 지금 배웠으므로, 메모를 겸해 씁니다. 불변의 수열의 임의의 구간에 대한 최소치/최대치를, 전처리 $O(N\log N)$, 쿼리 마다 $O(1)$ 로 구하는 데이터 구조입니다. 숫자 열의 값...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.