CDZSC_2015寒假新人(4)——搜索 - P

Description

 Parentheses Balance 

You are given a string consisting of parentheses () and []. A string of this type is said to be correct:

(a)
if it is the empty string
(b)
if A and B are correct, AB is correct,
(c)
if A is correct, () and [] is correct.

Write a program that takes a sequence of strings of this type and check their correctness. Your program can assume that the maximum string length is 128.

Input

The file contains a positive integer n and a sequence of n strings of parentheses () and [], one string a line.

Output

A sequence of Yes or No on the output file.

Sample Input

3
([])
(([()])))
([()[]()])()

  

Sample Output

Yes
No
Yes

Miguel Revilla
2000-08-14

 

题解:栈。括号匹配问题,左括号全压栈,右括号若是与栈顶匹配,则出栈顶,否则压栈,注意输入有可能是空串,要用 gets() 或 cin.getline() 输入,这坑了我一下,英语文盲的悲剧。详见代码。

 1 #include <stdio.h>
 2 #include <string.h>
 3 #include <stack>
 4 using namespace std;
 5
 6 const int MAX = 256;
 7 char str[MAX];
 8 int Map[MAX];
 9
10
11 int main()
12 {
13 #ifdef CDZSC_OFFLINE
14     freopen("in.txt", "r", stdin);
15     freopen("out.txt", "w", stdout);
16 #endif
17     Map[‘(‘] = -1; Map[‘)‘] = 1;
18     Map[‘[‘] = -2; Map[‘]‘] = 2;
19
20     int t, len;
21     scanf("%d", &t);
22     getchar();
23     while(t--)
24     {
25         gets(str);
26
27         len = strlen(str);
28         stack<char> st;
29         for(int i = 0; i < len; i++)
30         {
31             if(str[i] == ‘(‘ || str[i] == ‘[‘)
32             {
33                 st.push(str[i]);
34             }
35             else
36             {
37                 if(!st.empty() && !(Map[st.top()] + Map[str[i]]))
38                 {
39                     st.pop();
40                 }
41                 else
42                 {
43                     st.push(str[i]);
44                 }
45             }
46         }
47         printf("%s\n", st.empty() ? "Yes" : "No");
48     }
49     return 0;
50 }

时间: 2024-10-27 03:01:18

CDZSC_2015寒假新人(4)——搜索 - P的相关文章

CDZSC_2015寒假新人(4)——搜索 G

Time Limit:2000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Description Ignatius被魔王抓走了,有一天魔王出差去了,这可是Ignatius逃亡的好机会. 魔王住在一个城堡里,城堡是一个A*B*C的立方体,可以被表示成A个B*C的矩阵,刚开始Ignatius被关在(0,0,0)的位置,离开城堡的门在(A-1,B-1,C-1)的位置,现在知道魔王将在T分钟后回到城堡,Ignatius每分钟

CDZSC_2015寒假新人(4)——搜索 A

Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Description Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a number line and

CDZSC_2015寒假新人(4)——搜索 L

Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Description A message from humans to extraterrestrial intelligence was sent through the Arecibo radio telescope in Puerto Rico on the afternoon of Saturday November 16, 1974

CDZSC_2015寒假新人(4)——搜索 N

Time Limit:1000MS     Memory Limit:10000KB     64bit IO Format:%I64d & %I64u Description Standard web browsers contain features to move backward and forward among the pages recently visited. One way to implement these features is to use two stacks to

CDZSC_2015寒假新人(4)——搜索 C

Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Description There is a strange lift.The lift can stop can at every floor as you want, and there is a number Ki(0 <= Ki <= N) on every floor.The lift have just two butto

CDZSC_2015寒假新人(4)——搜索 B

Description There is a rectangular room, covered with square tiles. Each tile is colored either red or black. A man is standing on a black tile. From a tile, he can move to one of four adjacent tiles. But he can't move on red tiles, he can move only

CDZSC_2015寒假新人(4)——搜索 - D

Description You're in space. You want to get home. There are asteroids. You don't want to hit them. Input Input to this problem will consist of a (non-empty) series of up to 100 data sets. Each data set will be formatted according to the following de

CDZSC_2015寒假新人(4)——搜索 F

Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Description Ignatius had a nightmare last night. He found himself in a labyrinth with a time bomb on him. The labyrinth has an exit, Ignatius should get out of the labyrinth

CDZSC_2015寒假新人(4)——搜索 H

Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Description Hiking in the mountains is seldom an easy task for most people, as it is extremely easy to get lost during the trip. Recently Green has decided to go on a hiking