Codeforces 494A Treasure (思维 模拟)

68 篇文章 4 订阅
37 篇文章 0 订阅
Treasure
time limit per test:2 seconds
memory limit per test:256 megabytes

Malek has recently found a treasure map. While he was looking for a treasure he found a locked door. There was a string s written on the door consisting of characters '(', ')' and '#'. Below there was a manual on how to open the door. After spending a long time Malek managed to decode the manual and found out that the goal is to replace each '#' with one or more ')' characters so that the final string becomes beautiful.

Below there was also written that a string is called beautiful if for each i (1 ≤ i ≤ |s|) there are no more ')' characters than '(' characters among the first i characters of s and also the total number of '(' characters is equal to the total number of ')' characters.

Help Malek open the door by telling him for each '#' character how many ')' characters he must replace it with.

Input

The first line of the input contains a string s (1 ≤ |s| ≤ 105). Each character of this string is one of the characters '(', ')' or '#'. It is guaranteed that s contains at least one '#' character.

Output

If there is no way of replacing '#' characters which leads to a beautiful string print  - 1. Otherwise for each character '#' print a separate line containing a positive integer, the number of ')' characters this character must be replaced with.

If there are several possible answers, you may output any of them.

Examples
Input
(((#)((#)
Output
1
2
Input
()((#((#(#()
Output
2
2
1
Input
#
Output
-1
Input
(#)
Output
-1
Note

|s| denotes the length of the string s.


题目链接:http://codeforces.com/contest/494/problem/A


题目大意:给#填数字,表示插入的')'个数使得字符串可以完成无误的括号匹配

题目分析:因为只能填右括号,因此先从右往左扫,看#之后的是不是满足匹配要求,然后再从左往右扫,扫的时候因为#至少要加一个‘)’,那遇到一个就加一个,最后一个把所差的全加上即可

#include <cstdio>
#include <cstring>
using namespace std;
int const MAX = 1e5 + 5;
char s[MAX];

int main()
{
    scanf("%s", s);
    int len = strlen(s);
    int r = 0, cnt = 0, l = 0;
    for(int i = len - 1; i >= 0 && s[i] != '#'; i--)
    {
        if(s[i] == ')') 
            r ++;
        if(s[i] == '(')
        {
            r --;
            if(r < 0)
            {
                printf("-1\n");
                return 0;
            }
        }
    }   
    for(int i = 0; i < len; i++)
    {
        if(s[i] == '(') 
            l ++;
        if(s[i] == ')' || s[i] == '#')
        {
            l --;
            cnt += (s[i] == '#');
            if(l < 0)
            {
                printf("-1\n");
                return 0;
            }
        }
    }
    for(int i = 1; i < cnt; i++) 
        printf("1\n");
    printf("%d\n", l + 1);
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值