其他分享
首页 > 其他分享> > AcWing 2003. 找到牛!

AcWing 2003. 找到牛!

作者:互联网

题意

给定一个括号字符串,连续的两个'('可以表示牛的前脚,连续的两个')'可以表示牛的后脚,前脚必须在后脚的左侧,求牛的可能位置有几个,牛的可能位置由他的前后脚表示。

数据范围

\(1 \le N \le 50000\)

解题思路

代码

方法一:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

const int N = 5e4 + 10;

char s[N];

int main()
{
    scanf("%s", s);
    int n = strlen(s);
    
    int cnt = 0, ans = 0;
    for(int i = 1; i < n; i ++){
        if(s[i] == '(' && s[i - 1] == '(') cnt ++;
        if(s[i] == ')' && s[i - 1] == ')') ans += cnt;
    }
    printf("%d\n", ans);
    
    return 0;
}

方法二:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

const int N = 5e4 + 10;

char s[N];
int l[N], r[N];

int main()
{
    scanf("%s", s);
    int n = strlen(s);
    
    int idxl = 0, idxr = 0;
    for(int i = 1; i < n; i ++){
        if(s[i] == '(' && s[i - 1] == '(') l[idxl ++] = i;
    }
    for(int i = n - 2; i >= 0; i --){
        if(s[i] == ')' && s[i + 1] == ')') r[idxr ++] = i;
    }
    sort(r, r + idxr);
    
    int ans = 0;
    for(int i = 0; i < idxl; i ++){
        int x = l[i];
        int ll = 0, rr = idxr - 1;
        while(ll < rr){
            int mid = ll + rr + 1 >> 1;
            if(r[mid] <= x) ll = mid;
            else rr = mid - 1;
        }
        if(r[ll] > x) ans += idxr - ll;
        else ans += idxr - ll - 1;
    }
    printf("%d\n", ans);
    
    return 0;
}

标签:找到,ll,++,2003,int,ans,idxr,include,AcWing
来源: https://www.cnblogs.com/bxhbxh/p/16322108.html