码迷,mamicode.com
首页 > 其他好文 > 详细

codeforces 508 E. Arthur and Brackets

时间:2015-01-29 19:37:50      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:algorithm   贪心      

codeforces 508 E. Arthur and Brackets

题目链接:

http://codeforces.ru/problemset/problem/508/E

题意:
有n对括号,按顺序,给出每对括号长度的范围,输出一种情况。
限制:
1 <= n <= 600
思路:
贪心:能匹配的先匹配。
括号匹配问题,果断先思考用栈能不能做。


 C++ Code 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*codeforces 508 E. Arthur and Brackets
  题意:
  有n对括号,按顺序,给出每对括号长度的范围,输出一种情况。
  限制:
  1 <= n <= 600
  思路:
  贪心:能匹配的先匹配。
  括号匹配问题,果断先思考用栈能不能做。
 */

#include<iostream>
#include<cstdio>
using namespace std;
const int N = 605;
int stk[N], top;
char ans[2 * N];
int len = 0;
int pos[N], l[N], r[N];
int main()
{
    int n;
    int flag = 1;
    scanf("%d", &n);
    for(int i = 0; i < n; ++i)
    {
        scanf("%d%d", &l[i], &r[i]);
        if(flag == 0continue;
        stk[++top] = i;
        pos[i] = len;
        ans[len++] = ‘(‘;
        while(top > 0 && pos[stk[top]] + l[stk[top]] <= len)
        {
            if(pos[stk[top]] + r[stk[top]] < len)
            {
                flag = 0;
                break;
            }
            else
            {
                ans[len++] = ‘)‘;
                --top;
            }
        }
    }
    if(flag && top == 0)
    {
        puts(ans);
    }
    else
    {
        puts("IMPOSSIBLE");
    }
    return 0;
}

codeforces 508 E. Arthur and Brackets

标签:algorithm   贪心      

原文地址:http://blog.csdn.net/whai362/article/details/43274077

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!