Codeforces 612C Replace To Make Regular Bracket Sequence 【stack】

本文介绍了一个关于括号匹配的问题,给出了具体的实现思路与AC代码。通过对输入字符串中不同类型括号的分析,采用栈的数据结构解决括号匹配问题,并计算最小替换次数。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

C. Replace To Make Regular Bracket Sequence
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given string s consists of opening and closing brackets of four kinds <>{}[](). There are two types of brackets: opening and closing. You can replace any bracket by another of the same type. For example, you can replace < by the bracket {, but you can't replace it by ) or >.

The following definition of a regular bracket sequence is well-known, so you can be familiar with it.

Let's define a regular bracket sequence (RBS). Empty string is RBS. Let s1 and s2 be a RBS then the strings <s1>s2{s1}s2[s1]s2,(s1)s2 are also RBS.

For example the string "[[(){}]<>]" is RBS, but the strings "[)()" and "][()()" are not.

Determine the least number of replaces to make the string s RBS.

Input

The only line contains a non empty string s, consisting of only opening and closing brackets of four kinds. The length of s does not exceed 106.

Output

If it's impossible to get RBS from s print Impossible.

Otherwise print the least number of replaces needed to get RBS from s.

Sample test(s)
input
[<}){}
output
2
input
{()}[]
output
0
input
]]
output
Impossible


题意:给定一个只有'{' '[' '(' '<'开字符和'}' ']' ')' '>'闭字符的字符串,你可以将开字符互相转化,闭字符互相转化,要求得到一个括号匹配的串。若可以输出最少转化次数,反之输出Impossible。


思路:stack直接搞就OK了。


AC代码:


#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <cstdlib>
#include <algorithm>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <vector>
#include <string>
#define INF 0x3f3f3f3f
#define eps 1e-8
#define MAXN (1000000+10)
#define MAXM (200000+10)
#define Ri(a) scanf("%d", &a)
#define Rl(a) scanf("%lld", &a)
#define Rf(a) scanf("%lf", &a)
#define Rs(a) scanf("%s", a)
#define Pi(a) printf("%d\n", (a))
#define Pf(a) printf("%.2lf\n", (a))
#define Pl(a) printf("%lld\n", (a))
#define Ps(a) printf("%s\n", (a))
#define W(a) while(a--)
#define CLR(a, b) memset(a, (b), sizeof(a))
#define MOD 1000000007
#define LL long long
#define lson o<<1, l, mid
#define rson o<<1|1, mid+1, r
#define ll o<<1
#define rr o<<1|1
#define PI acos(-1.0)
#define first fi
#define second se
using namespace std;
bool judge(char op){
    return op == '(' || op == '{' || op == '<' || op == '[';
}
bool match(char op1, char op2){
    bool a = op1 == '(' && op2 == ')';
    bool b = op1 == '{' && op2 == '}';
    bool c = op1 == '<' && op2 == '>';
    bool d = op1 == '[' && op2 == ']';
    return a || b || c || d;
}
char str[MAXN];
stack<int> S;
int fp[MAXN];
int main()
{
    Rs(str); int len = strlen(str);
    bool flag = true;
    for(int i = 0; i < len; i++)
    {
        if(judge(str[i]))
            S.push(i);
        else
        {
            if(S.empty())
            {
                flag = false;
                break;
            }
            int j = S.top();
            fp[j] = i;
            fp[i] = j;
            S.pop();
        }
    }
    if(!S.empty() || !flag)
        printf("Impossible\n");
    else
    {
        int ans = 0;
        for(int i = 0; i < len; i++)
        {
            if(judge(str[i]))
                if(!match(str[i], str[fp[i]]))
                    ans++;
        }
        Pi(ans);
        while(!S.empty()) S.pop();
    }
    return 0;
}


### 编程问题或教程从0到y的获取方法 对于希望在Codeforces平台上找到难度范围从简单至特定等级(标记为`y`)的问题或教程,可以采取多种策略来实现这一目标。Codeforces提供了一个强大的过滤器功能,允许用户基于标签、解决次数以及题目难度筛选问题。 #### 使用Codeforces内置工具寻找合适的问题 通过访问Codeforces的问题集页面并应用适当的选择条件,能够有效地定位所需资源。具体而言,在问题集合页面中存在一个高级搜索选项,支持按照多个维度进行细化检索: - **按标签分类**:可以选择诸如“constructive algorithms”这样的主题标签[^1]。 - **依据难度区间挑选**:设定下限为入门级(即 rating 800),上限则根据个人需求调整至指定值`y`。例如,如果想要覆盖所有不超过rating 1900的问题,则应在此处输入相应数值作为最大边界。 ```python import requests from bs4 import BeautifulSoup def fetch_problems_by_difficulty(min_rating, max_rating): url = f"https://codeforces.com/problemset/page/1?difficulty={min_rating}-{max_rating}" response = requests.get(url) soup = BeautifulSoup(response.text, "html.parser") problem_list = [] for row in soup.select(".problems tr"): columns = row.find_all('td') if len(columns)>0: name_cell = columns[0].find("a", href=True)['href'] title = columns[0].text.strip() difficulty = int(columns[-1].text) problem_info = { 'title': title, 'link': f'https://codeforces.com{name_cell}', 'difficulty': difficulty } problem_list.append(problem_info) return problem_list[:5] # Example usage with min_rating set to 800 and max_rating as variable y problem_set = fetch_problems_by_difficulty(800, y) for p in problem_set: print(f"{p['title']} ({p['difficulty']}) [{p['link']}]") ``` 此Python脚本展示了如何利用BeautifulSoup库解析HTML文档结构,并从中提取满足给定难度区间的前五个编程挑战的信息。 #### 探索高质量的学习资料 除了直接解决问题外,学习者还可以借助一系列精心编写的指南和文章加深理解。这些材料通常由经验丰富的竞赛选手撰写,旨在帮助新手逐步掌握必要的技能和技术要点[^2][^3]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值