zoukankan
html css js c++ java
HDU3350 #define is unsafe 栈的应用
//数据结构-栈的应用 #include<iostream> #include<string> #include<vector> using namespace std; struct node { int value;//值 int add;//+的次数 }; //用容器实现栈的FILO vector<node> ans;//数值栈 vector<char> sig;//符号栈 int main() { int t, i; string str; node temp, temp2; cin>>t; while(t--) { cin>>str; temp.value = 0; temp.add = 0; sig.clear(); ans.clear(); for(i = 0; i < str.length(); i++) { //逐字打扫,只有'('、'+'、 ','、')'和数字是有用的,"MAX"不用处理 //优先级:'(' > '+' > ',' > ')' switch (str[i]) { case '(': sig.push_back(str[i]); temp.value = 0; temp.add = 0; break; case '+': ans.push_back(temp); sig.push_back(str[i]); temp.value = 0; temp.add = 0; break; case ',': while(!sig.empty() && sig.back() == '+') { temp2 = ans.back(); temp.value = temp.value + temp2.value; temp.add = temp.add + 1 + temp2.add; ans.pop_back(); sig.pop_back(); } ans.push_back(temp); sig.push_back(str[i]); temp.value = 0; temp.add = 0; break; case ')': while(!sig.empty() && sig.back() == '+') { temp2 = ans.back(); temp.value = temp.value + temp2.value; temp.add = temp.add + 1 + temp2.add; ans.pop_back(); sig.pop_back(); } temp2 = ans.back(); if(temp2.value > temp.value) { temp.value = temp2.value; temp.add = temp2.add * 2 + temp.add; } else { temp.add = temp.add * 2 + temp2.add; } sig.pop_back();sig.pop_back(); ans.pop_back(); break; case '0':case '1':case '2':case '3':case '4':case '5':case '6':case '7':case '8':case '9': temp.value = temp.value * 10 + str[i] - '0'; break; } } while(!sig.empty() && sig.back() == '+') { temp2 = ans.back(); temp.value = temp.value + temp2.value; temp.add = temp.add + 1 + temp2.add; ans.pop_back(); sig.pop_back(); } cout<<temp.value<<' '<<temp.add<<endl; } return 0; }
查看全文
相关阅读:
NOIP2018 游记
HDU1556 敌兵布阵
BZOJ 1032 [JSOI2007]祖码Zuma
BZOJ 1068 [SCOI2007]压缩
BZOJ 1090 [SCOI2003]字符串折叠
BZOJ 1260 [CQOI2007]涂色paint
BZOJ 1055 [HAOI2008]玩具取名
HDU 5151 Sit sit sit
HDU 4283 You Are the One
vue系列8:webpack
原文地址:https://www.cnblogs.com/windmissing/p/2559882.html
最新文章
Vue父组件与子组件传递事件/调用事件
vue创建后的数据,自定义设置对象的属性,实现不了双向绑定
使用js清空input file上传文件的内容
react脚手架create-react-app使用
HTML 禁止复制文字
Nodejs连接12种数据库例子集合
jq模糊匹配
前端数据加密与解密 vue NPM 篇
VUE跨域
python2.7.5
热门文章
x86上安装diskimage-builder(二)
x86上安装diskimage-builder
ovs 缓存packet + buffer_id
docker + onos(二)
Experimenting with ONOS clustering
docker + onos
sdn控制器拓扑发现(三) --lldp
centos8安装docker
安装onos
半平面交学习笔记
Copyright © 2011-2022 走看看