Nesting Depth

Google Code Jam Qualification Round 2020

B 题 Nesting Depth

题干

Given a string of digits S, insert a minimum number of opening and closing parentheses into it such that the resulting string is balanced and each digit d is inside exactly d pairs of matching parentheses.

Let the nesting of two parentheses within a string be the substring that occurs strictly between them. An opening parenthesis and a closing parenthesis that is further to its right are said to match if their nesting is empty, or if every parenthesis in their nesting matches with another parenthesis in their nesting. The nesting depth of a position p is the number of pairs of matching parentheses m such that p is included in the nesting of m.

For example, in the following strings, all digits match their nesting depth: 0((2)1), (((3))1(2)), ((((4)))), ((2))((2))(1). The first three strings have minimum length among those that have the same digits in the same order, but the last one does not since ((22)1) also has the digits 221 and is shorter.

Given a string of digits S, find another string S’, comprised of parentheses and digits, such that:
all parentheses in S’ match some other parenthesis,
removing any and all parentheses from S’ results in S,
each digit in S’ is equal to its nesting depth, and
S’ is of minimum length.

Input
The first line of the input gives the number of test cases, T. T lines follow. Each line represents a test case and contains only the string S.

Output
For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the string S’ defined above.

Limits
Time limit: 20 seconds per test set.
Memory limit: 1GB.
1 ≤ T ≤ 100.
1 ≤ length of S ≤ 100.

Test set 1 (Visible Verdict)
Each character in S is either 0 or 1.

Test set 2 (Visible Verdict)
Each character in S is a decimal digit between 0 and 9, inclusive.

Sample

Input

Output

4
0000
101
111000
1

Case #1: 0000
Case #2: (1)0(1)
Case #3: (111)000
Case #4: (1)

The strings ()0000(), (1)0(((()))1) and (1)(11)000 are not valid solutions to Sample Cases #1, #2 and #3, respectively, only because they are not of minimum length. In addition, 1)( and )(1 are not valid solutions to Sample Case #4 because they contain unmatched parentheses and the nesting depth is 0 at the position where there is a 1.

You can create sample inputs that are valid only for Test Set 2 by removing the parentheses from the example strings mentioned in the problem statement

解题思路

维护一个嵌套的深度对遇到的新数字与当前的数字做一个判断即可,然后分类讨论

代码如下

#include <iostream>
#include <cstring>
using namespace std;
int main(){
	int t,dep=0;
	cin>>t;
	char s[105];
	for(int p=1;p<=t;p++){
		cout<<"Case #"<<p<<": ";
		cin>>s;
		int op=s[0]-'0';
		dep=op;
		int len=strlen(s);
		for(int i=0;i<op;i++)cout<<'(';
		for(int i=0;i<len-1;i++){
			int d=s[i]-s[i+1];
			cout<<s[i];
			dep-=d;
			if(d>0){
				for(int j=0;j<d;j++)cout<<')';
			}
			else if(d<0){
				for(int j=0;j<-d;j++)cout<<'(';
			}
		}
		cout<<s[len-1];
		for(int i=0;i<dep;i++)cout<<')';
		cout<<endl;
	}
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值