2018 Multi-University Training Contest 1--HDU 6299 Balanced Sequence(思维)

题意:

给n个只有括号字符串通过排序让他是的正规括号如()或(())最多的子字符串长度。

题解:

对字符串进行排序,排序规则如下:

)))))((--左少右多--a 类型

))(((((--左多右少--b 类型

如果 a 与 a 比较:

       按照右括号从多到少排序;

如果 b 与 b 比较:

       按照左括号从少到多排序;

如果 a 与 b 比较:

       按照先 b 后 a 的顺序排序。

最后进行匹配括号。

#include <bits/stdc++.h>

using namespace std;

struct node{
	int l, r, much;
}example[100005];

char edge[100005];

bool cmp(node a, node b){
	if(a.l <= a.r && b.l > b.r){
		return false;
	}
	else if(a.l > a.r && b.l <= b.r){
		return true;
	}
	else if(a.l <= a.r && b.l <= b.r){
		return a.l > b.l;
	}
	else{
		return a.r < b.r;
	}
}

int main(){
	int t;
	scanf("%d", &t);
	while(t--){
		int n;
		scanf("%d", &n);
		for(int i = 0; i < n; i++){
			scanf("%s", edge);
			int a = 0, b = 0, c = 0;
			for(int j = 0; edge[j] != '\0'; j++){
				if(edge[j] == '('){
					a++;
				}
				else{
					if(a){
						a--;
						c++;
					}
					else{
						b++;
					}
				}
			}
			example[i].l = a;
			example[i].r = b;
			example[i].much = c;
		}
		sort(example, example+n, cmp);
		long long ans = 0, num_l = 0;
		for(int i = 0; i < n; i++){
			ans += example[i].much;
			if(num_l > example[i].r){
				ans += example[i].r;
				num_l -= example[i].r;
				num_l += example[i].l;
			}
			else{
				ans += num_l;
				num_l = example[i].l;
			}
		}
		printf("%lld\n", ans*2);
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值