Parencodings
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 25010   Accepted: 14745

Description

Let S = s1 s2...s2n be a well-formed string of parentheses. S can be encoded in two different ways:
q By an integer sequence P = p1 p2...pn where pi is the number of
left parentheses before the ith right parenthesis in S (P-sequence).

q By an integer sequence W = w1 w2...wn where for each right
parenthesis, say a in S, we associate an integer which is the number of
right parentheses counting from the matched left parenthesis of a up to
a. (W-sequence).

Following is an example of the above encodings:

	S		(((()()())))

P-sequence 4 5 6666

W-sequence 1 1 1456

Write a program to convert P-sequence of a well-formed string to the W-sequence of the same string.

Input

The first line of the input contains a single integer t (1 <= t <= 10), the number of test cases, followed by the input data for each test case. The first line of each test case is an integer n (1 <= n <= 20), and the second line is the P-sequence of a well-formed string. It contains n positive integers, separated with blanks, representing the P-sequence.

Output

The output file consists of exactly t lines corresponding to test cases. For each test case, the output line should contain n integers describing the W-sequence of the string corresponding to its given P-sequence.

Sample Input

2
6
4 5 6 6 6 6
9
4 6 6 6 6 8 9 9 9

Sample Output

1 1 1 4 5 6
1 1 2 4 5 1 1 3 9

Source

代码:
 #include<iostream>
#include<string>
#include<cstdio>
using namespace std;
int main()
{
int n,t;
scanf("%d",&t);
while(t--)
{
int q1=,q2=;
string s;
scanf("%d",&n);
for(int i=;i<n;i++)
{
scanf("%d",&q1);
q2=q1-q2;
while(q2--)
s+="(";
s+=")";
q2=q1;
}
int num=s.size();
int cnt=;
for(int i=;i<num;i++)
{
if(s[i]==')')
{
cnt++;
int flag=;
int sum=;
for(int j=i-;j>=;j--)
{
if(flag==)
break;
if(s[j]=='(')
{
sum++;
flag-=;
}
else if(s[j]==')')
flag+=;
}
if(cnt!=n)
printf("%d ",sum);
else printf("%d\n",sum);
}
}
}
return ;
}

最新文章

  1. linux拷贝命令,移动命令
  2. cannot simultaneously fetch multiple bags
  3. Notepad++根据语言类型自动选择对应编译器来编译代码
  4. 2016/10/28 很久没更了 leetcode解题 3sum问题进阶版4sum
  5. java.lang.Exception: No runnable methods
  6. angularjs指令(一)
  7. SLAM数据集
  8. iOS开发 沙盒路径和使用
  9. 现在看看自己写的博客,怎么感觉好low啊。。。
  10. linux命令学习-su
  11. linux查看和开放某端口
  12. focus与定位
  13. Injector Job深入分析
  14. PHP 单列模式实例讲解以及参考网址
  15. fake it till you become it
  16. Mac下Jekyll安装
  17. 5-jQuery - AJAX get()/post()页面请求即执行
  18. 基于EF Core的Code First模式的DotNetCore快速开发框架
  19. TCP、UDP详解与抓包工具使用
  20. Maven上传jar包到私服

热门文章

  1. AndroidStudio中创建Assets文件
  2. CSS里的pointer-events属性
  3. 为什么下载APP,扫描二维码,关注微信公众号,就会送牛奶送小礼品?下载使用量高,会怎样?
  4. [转] FastMM、FastCode、FastMove的使用
  5. js获取浏览器地址
  6. sprint3冲刺第一天
  7. HDU5737 : Differencia
  8. MFC 单文档 根据数据 绘图
  9. ie不支持getElementsByName的解决办法
  10. xml基本操作和保存配置文件应用实例