博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[CF508E] Arthur and Brackets
阅读量:5049 次
发布时间:2019-06-12

本文共 1099 字,大约阅读时间需要 3 分钟。

贪心解决就行了。

用栈模拟这个过程,每次优先解决栈顶的括号。

可以看出优先解决栈顶的元素更有利于匹配上每一对括号。

1 #include
2 3 int n; 4 5 class stack 6 { 7 private: 8 int tp; 9 int a[605];10 public:11 void push(int v)12 {13 a[++tp]=v;14 }15 int top()16 {17 return a[tp];18 }19 void pop()20 {21 tp--;22 }23 bool empty()24 {25 return tp==0;26 }27 };28 29 stack s;30 char ans[1205];31 int l[605],r[605],p[605],cnt;32 33 int main()34 {35 scanf("%d",&n);36 int cnt=0,fl=1;37 for(int i=1;i<=n;i++)38 {39 scanf("%d%d",&l[i],&r[i]);40 s.push(i);41 p[i]=cnt;42 ans[++cnt]='(';43 while(!s.empty())44 {45 int np=s.top();46 if(r[np]+p[np]
cnt)break;52 ans[++cnt]=')';53 s.pop();54 }55 }56 if(fl&&s.empty())printf("%s",ans+1);57 else printf("IMPOSSIBLE");58 return 0;59 }

 

转载于:https://www.cnblogs.com/eternhope/p/9838669.html

你可能感兴趣的文章
VueJS ElementUI el-table 的 formatter 和 scope template 不能同时存在
查看>>
Halcon一日一练:图像拼接技术
查看>>
Swift - RotateView
查看>>
iOS设计模式 - 中介者
查看>>
centos jdk 下载
查看>>
HDU 1028 Ignatius and the Princess III(母函数)
查看>>
(转)面向对象最核心的机制——动态绑定(多态)
查看>>
token简单的使用流程。
查看>>
django创建项目流程
查看>>
UIActionSheet 修改字体颜色
查看>>
Vue 框架-01- 入门篇 图文教程
查看>>
Spring注解之@Lazy注解,源码分析和总结
查看>>
多变量微积分笔记24——空间线积分
查看>>
Magento CE使用Redis的配置过程
查看>>
poi操作oracle数据库导出excel文件
查看>>
(转)Intent的基本使用方法总结
查看>>
Mac 下的Chrome 按什么快捷键调出页面调试工具
查看>>
Windows Phone开发(24):启动器与选择器之发送短信
查看>>
JS截取字符串常用方法
查看>>
Google非官方的Text To Speech和Speech Recognition的API
查看>>