[刷题]算法竞赛入门经典(第2版) 5-9/UVa1596 - Bug Hunt
//开学了,好烦啊啊啊啊啊!怎么开个学那么多破事情!!都俩星期了,终于有时间写出来一道题
题意:不难理解,不写了。这几天忙的心累。
代码:(Accepted, 0.010s)
//UVa1596 - Bug Hunt
#include<iostream>
#include<sstream>
#include<string>
#include<stack>
#include<map>
using namespace std;
struct o_O {
int size;
map<int, int> dim;
};
map<string, o_O> dat;
string line;
bool get(stack<string>& st,int& num) {
while (!st.empty()) {
if (num >= dat[st.top()].size) return false;
if (!dat[st.top()].dim.count(num)) return false;
num = dat[st.top()].dim[num];
st.pop();
}
return true;
}
bool declare() {//定义数组
for (auto& r : line)
if (r == '[' || r == ']') r = ' ';
istringstream in(line);
string na;
int nu;
in >> na >> nu;
dat[na].size = nu;
return nu >= 0;
}
bool solve(){//处理赋值
for (auto& r : line)
if (r == '[' || r == ']' || r == '=') r = ' ';
stack<string> stl, str;
int numl, numr;
istringstream in(line);
string now,sl;
in >> sl;
while (in >> now && now[0] > '9') stl.push(now);
istringstream inl(now);inl >> numl;
while (in >> now && now[0] > '9') str.push(now);
istringstream inr(now);inr >> numr;
if (!get(stl, numl) || !get(str, numr)) return false;
if (numl >= dat[sl].size) return false;
dat[sl].dim[numl] = numr;
return true;
}
int main()
{
//freopen("in.txt", "r", stdin);//
while (cin>>line && line[0] != '.') {
unsigned flag = 0, linenum = 0;
dat.clear();
do {
++linenum;
if (flag) continue;
if (!(line.find('=') == string::npos ? declare() : solve()))
flag = linenum;
} while (cin>>line && line[0] != '.');
cout << flag << '\n';
}
return 0;
}
分析:给数组找bug,只有赋值和定义两种语句。一开始我想复杂了,以为会有诸如
a[b[c[0]=1]=d[2]]=e[e[e[e[e[e[3]]]=e[1]=e[2]=e[3]=233]]]=1
这种情况发生,于是就用递归做,做了好久,还老是WA(/* 实在难抽出一块一块的时间来学习,断断续续写了一星期,思路老是想到一半就断了。而且事情多烦的脑子疼,想不出东西。妈蛋还不如放假。*/)
结果昨天晚上一个老司机跟我说,干嘛那么烦,一行只有一个赋值。。。。。
好的,瞬间简单了。。今天花了一个小时不知道到不到就做出来了。可能是用了sstream,再转存到stack的原因,比较慢,用时10ms。
附:之前以为一行可以多个赋值的时候写的代码(更新:终于调试的AC了):
代码:(Accepted, 0.010s)
//UVa1596 - Bug Hunt
#include<iostream>
#include<sstream>
#include<string>
#include<vector>
#include<queue>
#include<map>
using namespace std;
string line;
queue<string> qu;
struct o_O {
int len;
map<int, int> def;
};
map<string, o_O> dat;
int get() {//从qu中get当前index的值,通过递归实现
string now = qu.front();
qu.pop();
if (now[0] > '9') {//若为变量名,说明有嵌套
int n = get();//得到当前变量的index
qu.pop();
if (n >= dat[now].len || n < 0) return -1;//数组越界
if (qu.empty() || qu.front()[0] == '}') {//不是赋值,直接返回
if (!dat[now].def.count(n)) return -1;//没初始化
return dat[now].def[n];
}
return dat[now].def[n] = get();//赋值
}
int num;//若为数字
istringstream iin(now);
iin >> num;
return num;
}
bool declare() {//定义数组
for (auto& r : line)
if (r == '[' || r == ']') r = ' ';
istringstream in(line);
string na;
int nu;
in >> na >> nu;
dat[na].len = nu;
return nu >= 0;
}
bool solve() {//预处理当前行
for (auto& r : line)
if (r == '[' || r == '=') r = ' ';
istringstream in(line);
string now;
int num;
while (in >> now) {
if (now[0] > '9') qu.push(now);
else {
int i = 0;
for (auto& r : now)
if (r == ']') r = ' ', ++i;
qu.push(now);
while (i--) qu.push("}");//为什么要用}不用],一开始想的是}的ASCII是125,而]夹在大小写字母之间。然而后来发现并没有什么卵用
}
}
return get() >=0;
}
int main()
{
//freopen("in.txt", "r", stdin);//
while (getline(cin, line) && line[0] != '.') {
unsigned flag = 0, linenum = 0;
dat.clear();
while (!qu.empty()) qu.pop();//queue不自带clear()的?!
do {
++linenum;
if (flag) continue;
if (!(line.find('=') == string::npos ? declare() : solve()))
flag = linenum;
} while (getline(cin, line) && line[0] != '.');
cout << flag << '\n';
}
return 0;
}
虽然是我想多了,但是应用到单个赋值也是没问题的呀。但是还是想不通哪里就WA了。。。应该是哪个特殊的格式没考虑到。以后有心情再调试。(更新:终于调试得AC啦,代码已经覆盖更新。竟然也是0.010s。)
[刷题]算法竞赛入门经典(第2版) 5-9/UVa1596 - Bug Hunt的更多相关文章
- [刷题]算法竞赛入门经典(第2版) 4-6/UVa508 - Morse Mismatches
书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,10 ms) //UVa508 - Morse Mismatches #include< ...
- [刷题]算法竞赛入门经典(第2版) 5-15/UVa12333 - Revenge of Fibonacci
题意:在前100000个Fibonacci(以下简称F)数字里,能否在这100000个F里找出以某些数字作为开头的F.要求找出下标最小的.没找到输出-1. 代码:(Accepted,0.250s) / ...
- [刷题]算法竞赛入门经典(第2版) 5-13/UVa822 - Queue and A
题意:模拟客服MM,一共有N种话题,每个客服MM支持处理其中的i个(i < N),处理的话题还有优先级.为了简化流程方便出题,设每个话题都是每隔m分钟来咨询一次.现知道每个话题前来咨询的时间.间 ...
- [刷题]算法竞赛入门经典(第2版) 4-5/UVa1590 - IP Networks
书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms) //UVa1590 - IP Networks #include<iost ...
- [刷题]算法竞赛入门经典(第2版) 6-7/UVa804 - Petri Net Simulation
题意:模拟Petri网的执行.虽然没听说过Petri网,但是题目描述的很清晰. 代码:(Accepted,0.210s) //UVa804 - Petri Net Simulation //Accep ...
- [刷题]算法竞赛入门经典(第2版) 6-6/UVa12166 - Equilibrium Mobile
题意:二叉树代表使得平衡天平,修改最少值使之平衡. 代码:(Accepted,0.030s) //UVa12166 - Equilibrium Mobile //Accepted 0.030s //# ...
- [刷题]算法竞赛入门经典(第2版) 6-1/UVa673 6-2/UVa712 6-3/UVa536
这三题比较简单,只放代码了. 题目:6-1 UVa673 - Parentheses Balance //UVa673 - Parentheses Balance //Accepted 0.000s ...
- [刷题]算法竞赛入门经典(第2版) 5-16/UVa212 - Use of Hospital Facilities
题意:模拟患者做手术. 其条件为:医院有Nop个手术室.准备手术室要Mop分钟,另有Nre个恢复用的床.准备每张床要Mre分钟,早上Ts点整医院开张,从手术室手术完毕转移到回复床要Mtr分钟.现在医院 ...
- [刷题]算法竞赛入门经典(第2版) 5-11/UVa12504 - Updating a Dictionary
题意:对比新老字典的区别:内容多了.少了还是修改了. 代码:(Accepted,0.000s) //UVa12504 - Updating a Dictionary //#define _XieNao ...
- [刷题]算法竞赛入门经典(第2版) 5-10/UVa1597 - Searching the Web
题意:不难理解,照搬题意的解法. 代码:(Accepted,0.190s) //UVa1597 - Searching the Web //#define _XIENAOBAN_ #include&l ...
随机推荐
- JavaScript对象原型写法区别
体现对象原型分步式写法 //原型分步式写法 //构造函数 function Person(){} //对象原型 Person.prototype.name = 'Avensatr'; Pers ...
- 3.Redis常用命令:String
字符串类型是Redis中最为基础的数据存储类型,它在Redis中是二进制安全的,这便意味着该类型可以接受任何格式的数据,如JPEG图像数据或Json对象描述信息等.在Redis中字符串类型的Value ...
- canvas画布
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8" ...
- java开发中经典的三大框架SSH
首先我们要明白什么是框架为什么用?相信一开始学习编程的时候都会听到什么.什么框架之类的:首先框架是一个软件半成品,都会预先实现一些通用功能,使用框架直接应用这些通用功能而不用重新实现,所以大多数企业都 ...
- [转]SecureCRT右键粘贴的设置
1.习惯用putty的朋友,一般都习惯鼠标右键自动粘贴的功能,对于SecureCRT6.0.2 ,这个功能也已经是默认配置了. 老版本的SecureCRT其实也有这个功能,只是不是默认设置,很多人不知 ...
- 安卓 ADB常见问题整理
以下都是ADB连接问题,可以通过尝试如下步骤,由简单度排序 1. 插拔下USB连接线 2. 关闭USB模式再打开 3. 执行以下命令 adb kill-server adb start-server ...
- Sitemesh 3 配置和使用(最新)
Sitemesh 3 配置和使用(最新) 一 Sitemesh简介 Sitemesh是一个页面装饰器,可以快速的创建有统一外观Web应用 -- 导航 加 布局 的统一方案~ Sitemesh可以拦截任 ...
- 用MPLAB IDE编程时,软件总是弹出一个窗口提示: “the extended cpu mode configuration bit is enabled,but the program that was loaded was not built using extended cpu instructions. therefore,your code may not work properly
用MPLAB IDE编程时,软件总是弹出一个窗口提示:"the extended cpu mode configuration bit is enabled,but the program ...
- java多线程基本概述(七)——join()方法
在很多情况下,主线程创建并启动子线程,如果子线程中有大量的耗时运算,主线程将早于子线程结束,如果想让主线程等待子线程结束后再结束,那么我们可以使用join()方法.调用join()方法的意思是当前线程 ...
- js 不要使用new
(1)不要使用new Array(),new Number, new String, or new Boolean. 等等 如果要新建数组,没有必要使用new Array(),使用[];原因是直观. ...