博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Parencodings
阅读量:4673 次
发布时间:2019-06-09

本文共 2546 字,大约阅读时间需要 8 分钟。

Parencodings

Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32768K (Java/Other)
Total Submission(s) : 13   Accepted Submission(s) : 7
Problem Description
Let S = s1 s2 … s2n be a well-formed string of parentheses. S can be encoded in two different ways: [ul] [li]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).[/li] [li]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).[/li] [/ul] Following is an example of the above encodings: [pre] S (((()()()))) P-sequence 4 5 6666 W-sequence 1 1 1456 [/pre] 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 file 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
2001 Asia Regional Teheran
 
1 #include 
2 #include
3 4 int main() 5 { 6 int T,num,i,j,sign,sum,K,k,z,tend,alto; 7 scanf("%d",&T); 8 while(T--) 9 {10 int a[1000]={
0},b[1000],c[1000]={
0};11 scanf("%d %d",&num,&sign);12 a[sign]+=1;13 b[0]=sign;14 getchar();15 for(i=sign+1,j=1,k=1;j
=0;z--)38 {39 if(a[z]==1)40 continue;41 else42 {43 if(a[z]==0)44 {a[z]='N';c[j]+=1;break;}45 else46 {47 if(a[z]=='N')48 {49 c[j]+=1;50 }51 continue;52 }53 }54 }55 for(j=0;j
View Code

 

转载于:https://www.cnblogs.com/Wurq/p/3750302.html

你可能感兴趣的文章
idea的项目结构
查看>>
stl pair
查看>>
python路径相关小问题
查看>>
老李分享:持续集成学好jenkins之Git和Maven配置
查看>>
Android深度探索-卷1第二章心得体会
查看>>
linux中cat、more、less命令区别详解
查看>>
java读写文件总结
查看>>
阿里题目:明星群众问题
查看>>
为什么SQL用UPDATE语句更新时更新行数会多3行有触发器有触发器有触发器有触发器有触发器有触发器...
查看>>
关于hist
查看>>
Xtrareport 交叉报表
查看>>
谭浩强C语言第四版第九章课后习题7--9题(建立,输出,删除,插入链表处理)...
查看>>
20145101 《Java程序设计》第7周学习总结
查看>>
P2678 跳石头
查看>>
Alpha阶段项目复审
查看>>
ArrayQueue详解(待解决)
查看>>
ASP.NET 安全认证(四)
查看>>
IE9+下如何让input的placeholder样式生效
查看>>
使用 web storage 制作简单留言本
查看>>
61组第二次团队作业
查看>>