链接:



Parencodings
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 17044   Accepted: 10199

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


题意:


       先看题目样例中给出的括号序列 S 注意到它有 6 个右括号

       而下面的两个数字序列 P 和 W 都含有 6 个数字,而且都写在这右边6个括号下面

       再仔细看序列 P 代表的是从左到右,每一个右括号前面的左括号的个数

       平时生活中括号都是一对对存在的

       W序列代表的是与当前右括号匹配的最近的左括号编号

       【这个编号是按照离开当前需要匹配的右边括号的,左边括号个数计算的】





        题目给了你序列 P 要你输出序列 W ,简单模拟一下就好了

算法:


       简单模拟

思路:


      用一个数组标记即可,左括号标记为 0,右括号标记为 1

      同时再用一个 vis[] 数组标记已经被匹配过了的左边括号


/**
Accepted 180K 0MS C++ 1586B
题意:先看题目样例中给出的括号序列 S 注意到它有 6 个右括号
而下面的两个数字序列 P 和 W 都含有 6 个数字,而且都写在这右边6个括号下面
再仔细看序列 P 代表的是从左到右,每一个右括号前面的左括号的个数
平时生活中括号都是一对对存在的
W序列代表的是与当前右括号匹配的最近的左括号编号
【这个编号是按照离开当前需要匹配的右边括号的,左边括号个数计算的】 题目给了你序列 P 要你输出序列 W ,简单模拟一下就好了 算法:简单模拟 思路:用一个数组标记即可,左括号标记为 0,右括号标记为 1
同时再用一个 vis[] 数组标记已经被匹配过了的左边括号 */
#include<stdio.h>
#include<string.h>
const int maxn = 2000; int a[maxn]; //记录括号是左边还是右边
int vis[maxn]; // 标记是否被匹配 int main()
{
int T;
int n;
scanf("%d", &T);
while(T--)
{
scanf("%d", &n);
memset(vis, 0, sizeof(vis)); //初始化清空
memset(a, 0, sizeof(a));
int x;
int t = 0; //记录当下左括号数目
int index = 1; //记录当前括号下标
int j;
for(int i = 0; i < n; i++)
{
scanf("%d", &x); //每次输入一个右边括号,同时补全它左边括号的数目
if(x > t)
{
int tmp = x-t; //记录当前左边
t = x;
while(tmp--)
{
a[index++] = 0; //补全左边括号
}
}
a[index++] = 1; //记录当前右边括号
} int flag = 0;
int num = index; // 总的括号数目
//for(int i = 1; i < num; i++) printf("%d ", a[i]); printf("\n");
for(int i = 1; i < num; i++) // 从前往后遍历 )
{
if(a[i] == 1) // )
{
flag = 0;
int ans = 0;
for(int j = i-1; j >= 1; j--) // 从后往前匹配
{
if(flag == 1) break;
if(a[j] == 0 && vis[j] && flag == 0)
{
ans++;
}
else if(a[j] == 0 && !vis[j])
{
ans++;
vis[j] = 1;
printf("%d ", ans);
flag = 1;
break;
}
}
}
}
printf("\n");
}
return 0;
}

 

POJ 1068 Parencodings【水模拟--数括号】的更多相关文章

  1. poj 1068 Parencodings(模拟)

    转载请注明出处:viewmode=contents">http://blog.csdn.net/u012860063?viewmode=contents 题目链接:http://poj ...

  2. 模拟 POJ 1068 Parencodings

    题目地址:http://poj.org/problem?id=1068 /* 题意:给出每个右括号前的左括号总数(P序列),输出每对括号里的(包括自身)右括号总数(W序列) 模拟题:无算法,s数组把左 ...

  3. POJ 1068 Parencodings (类似括号的处理问题)

                                                                                                    Pare ...

  4. POJ 1068 Parencodings 模拟 难度:0

    http://poj.org/problem?id=1068 #include<cstdio> #include <cstring> using namespace std; ...

  5. [ACM] POJ 1068 Parencodings(模拟)

    Parencodings Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 19352   Accepted: 11675 De ...

  6. poj 1068 Parencodings 模拟题

    Description Let S = s1 s2...s2n be a well-formed string of parentheses. S can be encoded in two diff ...

  7. poj 1068 Parencodings 模拟

    进入每个' )  '多少前' (  ', 我们力求在每' ) '多少前' )  ', 我的方法是最原始的图还原出来,去寻找')'. 用. . #include<stdio.h> #incl ...

  8. poj 1068 Parencodings(栈)

    题目链接:http://poj.org/problem?id=1068 思路分析:对栈的模拟,将栈中元素视为广义表,如 (((()()()))),可以看做 LS =< a1, a2..., a1 ...

  9. POJ 1068 Parencodings

    Parencodings Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 24932   Accepted: 14695 De ...

随机推荐

  1. java中XML操作:xml与string互转、读取XML文档节点及对XML节点增删改查

    一.XML和String互转: 使用dom4j程式变得很简单 //字符串转XML String xmlStr = \"......\"; Document document = D ...

  2. Python - 连续替换(replace)的正則表達式(re)

    字符串连续替换, 能够连续使用replace, 也能够使用正則表達式. 正則表達式, 通过字典的样式, key为待替换, value为替换成, 进行一次替换就可以. 代码 # -*- coding: ...

  3. 倍福TwinCAT(贝福Beckhoff)基础教程 松下驱动器如何执行绝对值清零

    点击参数-参数一览,然后修改015为0(设置为绝对编码器方式),点击设定值变更,然后传送,EEP,将参数写入驱动器(保持USB线连接,重启驱动器并确认参数确是改成0了)   监视器-清除多圈数,清除之 ...

  4. JavsScript中DOM的基本操作

    节点及其类型 元素节点 属性节点: 元素的属性, 可以直接通过属性的方式来操作. 文本节点: 是元素节点的子节点, 其内容为文本. 在 html 文档的什么位置编写 js 代码 直接在 html 页面 ...

  5. [1-6] 把时间当做朋友(李笑来)Chapter 6 【更多思考】 摘录

    记住,你不可能百分之百地有效率,至少不可能总是百分之百地有效率. 他们的效率很差.根源在于,他们其实只做简单的事情,而回避那些有难度的工作. 好像丢钱包的人都不是“故意”丢的一样,办事拖拉的人大多并非 ...

  6. 解决zabbix“ZBX_NOTSUPPORTED: Timeout while executing a shell script”报错

    如题所示,在zabbix_server使用zabbix_get获取自定义“UserParameter”对应的脚本的数据时,出现了如题所示的报错信息 [root@nmp01 scripts]# /usr ...

  7. 网上流传的长盛不衰的Steve Jobs(乔布斯) 14分钟“Stay Hungry, Stay Foolish”演讲视频

    http://timyang.net/misc/speech/附:网上流传的长盛不衰的Steve Jobs 14分钟“Stay Hungry, Stay Foolish”演讲视频 (原视频地址:htt ...

  8. IIS5.1、IIS6.0、IIS7.5中安装配置MVC 3

    本文主要介绍在IIS5.1.IIS6.0.IIS7.5中安装配置MVC 3的具体办法! 正文: IIS5.1 1. 安装Microsoft .net FrameWork 4.0安装包; 2. 安装AS ...

  9. 【hadoop之翊】——windows 7使用eclipse下hadoop应用开发环境搭建

    由于一些缘故,这节内容到如今才写.事实上弄hadoop有一段时间了,能够编写一些小程序了,今天来还是来说说环境的搭建.... 说明一下:这篇文章的步骤是接上一篇的hadoop文章的:http://bl ...

  10. [转] java代码块 介绍

    //执行顺序:(优先级从高到低.)静态代码块>mian方法>构造代码块>构造方法. 其中静态代码块只执行一次.构造代码块在每次创建对象是都会执行. 1 普通代码块 1 //普通代码块 ...