Spreadsheet

In 1979, Dan Bricklin and Bob Frankston wrote VisiCalc, the first spreadsheet application. It became a huge success and, at that time, was the killer application for the Apple II computers. Today, spreadsheets are found on most desktop computers.

The idea behind spreadsheets is very simple, though powerful. A spreadsheet consists of a table where each cell contains either a number or a formula. A formula can compute an expression that depends on the values of other cells. Text and graphics can be added for presentation purposes.

You are to write a very simple spreadsheet application. Your program should accept several spreadsheets. Each cell of the spreadsheet contains either a numeric value (integers only) or a formula, which only support sums. After having computed the values of all formulas, your program should output the resulting spreadsheet where all formulas have been replaced by their value.

 
Figure: Naming of the top left cells

Input

The first line of the input file contains the number of spreadsheets to follow. A spreadsheet starts with a line consisting of two integer numbers, separated by a space, giving the number of columns and rows. The following lines of the spreadsheet each contain a row. A row consists of the cells of that row, separated by a single space.

A cell consists either of a numeric integer value or of a formula. A formula starts with an equal sign (=). After that, one or more cell names follow, separated by plus signs (+). The value of such a formula is the sum of all values found in the referenced cells. These cells may again contain a formula. There are no spaces within a formula.

You may safely assume that there are no cyclic dependencies between cells. So each spreadsheet can be fully computed.

The name of a cell consists of one to three letters for the column followed by a number between 1 and 999 (including) for the row. The letters for the column form the following series: A, B, C, ..., Z, AA, AB, AC, ..., AZ, BA, ..., BZ, CA, ..., ZZ, AAA, AAB, ..., AAZ, ABA, ..., ABZ, ACA, ..., ZZZ. These letters correspond to the number from 1 to 18278. The top left cell has the name A1. See figure 1.

Output

The output of your program should have the same format as the input, except that the number of spreadsheets and the number of columns and rows are not repeated. Furthermore, all formulas should be replaced by their value.

Sample Input

1
4 3
10 34 37 =A1+B1+C1
40 17 34 =A2+B2+C2
=A1+A2 =B1+B2 =C1+C2 =D1+D2

Sample Output

10 34 37 81
40 17 34 91
50 51 71 172 题意:给你一个电子表格,行用数字表示,列用大写字母表示,如A3表示第3行第1列,表示列的比较特殊,依次为A,B,C.....AA(27),AB(28)........有些格子直接给的数字,有的给的表达式,
如=A1+B1+C1,表示由这3个数相加。而且题目保证都有解,不会出现那种循环无解的情况。行或者是列可能达到18287,但所有的个数不会非常大,所以不能开成2维数组,开一维就可以了。最后要
打印所有的数。 解析:这题是一个拓扑排序,但是比较麻烦的是处理输入,如果某个格子是一个表达式,如(D1)=A1+B1+C1,那么把A1(1),B1(2),C1(3)这3个点分别于D1(4)连一条指向D1(4)的边,只
有先知道了A1,B1,C1,才能得到D1,设置一个数组indeg[](表示入度),如果有u->v,则indeg[v]++,然后把入度为0的点(u)加入队列,把这个点指向的其他点(v)的入度减1并v的值加上u
的值,如果其他点(v)的入度此时变0,就加入队列。跑一边拓扑排序即可。
代码如下:
#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm>
#include<set>
#include<map>
#include<queue>
#include<vector>
#include<iterator>
#include<utility>
#include<sstream>
#include<iostream>
#include<cmath>
#include<stack>
using namespace std;
const int INF=1000000007;
const double eps=0.00000001;
const int maxn=2000005; // 开到百万即可
int row,col; // 行,列
int val[maxn]; // 数值
int GetId(int x,int y){ return (x-1)*col+y; } // 得到某个位置的id
string S[maxn];
vector<int> G[maxn]; // 用动态数组建立临接表,我比较喜欢用这种方式
int indeg[maxn]; // 入度
int Get(const string& str) // 如果格子中是数值,则调用这个函数
{
int ret=0;
for(int i=0;i<str.size();i++) ret=ret*10+str[i]-'0';
return ret;
}
void change_to_num(const string& str,int id)
{
int i;
for(i=0;i<str.size();i++)
{
if(str[i]>='0'&&str[i]<='9') break; // 找到字母和数字的分界位置
}
int R=0,C=0;
for(int j=0;j<i;j++) C=C*26+str[j]-'A'+1; // 分别计算行跟列
for(int j=i;j<str.size();j++) R=R*10+str[j]-'0';
int to=GetId(R,C);
G[to].push_back(id); // 建表
indeg[id]++;
}
void link(const string& str,int id)
{
int pre=1;
int i;
for(i=1;i<str.size();i++)
{
if(str[i]=='+')
{
change_to_num(str.substr(pre,i-pre),id); //单独分离出来如=A1+B1+C1,分离出A1,B1,
pre=i+1;
}
}
change_to_num(str.substr(pre,i-pre),id); // 最后一个还要处理,如分离出最后的C1
}
void Get_Val(const string& str,int id)
{
if(str[0]!='=') val[id]=Get(str); // 如果是数值
else link(str,id); // 要建立临接表
}
queue<int> que;
void toposort()
{
while(!que.empty()) que.pop();
for(int i=1;i<=row*col;i++) if(!indeg[i]) que.push(i); //入度为0 的加入队列
while(!que.empty())
{
int now=que.front(); que.pop();
for(int i=0;i<G[now].size();i++)
{
int to=G[now][i];
indeg[to]--;
val[to]+=val[now]; //加上数值
if(!indeg[to]) que.push(to); //变为0就加入队列
}
}
}
void ans_print()
{
for(int i=1;i<=row;i++)
{
for(int j=1;j<=col;j++)
{
if(j!=1) printf(" ");
printf("%d",val[GetId(i,j)]);
}
printf("\n");
}
}
int main()
{
int T;
scanf("%d",&T);
while(T--)
{
scanf("%d%d",&col,&row);
memset(val,0,sizeof(val));
for(int i=1;i<=row*col;i++) G[i].clear();
memset(indeg,0,sizeof(indeg));
for(int i=1;i<=row;i++)
{
for(int j=1;j<=col;j++)
{
int id=GetId(i,j); // 得到他的id
cin>>S[id];
Get_Val(S[id],id); // 处理
}
}
toposort(); // 拓扑排序
ans_print(); // 打印
}
return 0;
}
												

UVA196-Spreadsheet(拓扑排序)的更多相关文章

  1. UVA215-Spreadsheet Calculator(模拟+拓扑排序)

    Problem UVA215-Spreadsheet Calculator Accept:401  Submit:2013 Time Limit: 3000 mSec Problem Descript ...

  2. 算法与数据结构(七) AOV网的拓扑排序

    今天博客的内容依然与图有关,今天博客的主题是关于拓扑排序的.拓扑排序是基于AOV网的,关于AOV网的概念,我想引用下方这句话来介绍: AOV网:在现代化管理中,人们常用有向图来描述和分析一项工程的计划 ...

  3. 有向无环图的应用—AOV网 和 拓扑排序

    有向无环图:无环的有向图,简称 DAG (Directed Acycline Graph) 图. 一个有向图的生成树是一个有向树,一个非连通有向图的若干强连通分量生成若干有向树,这些有向数形成生成森林 ...

  4. 【BZOJ-2938】病毒 Trie图 + 拓扑排序

    2938: [Poi2000]病毒 Time Limit: 1 Sec  Memory Limit: 128 MBSubmit: 609  Solved: 318[Submit][Status][Di ...

  5. BZOJ1565 [NOI2009]植物大战僵尸(拓扑排序 + 最大权闭合子图)

    题目 Source http://www.lydsy.com/JudgeOnline/problem.php?id=1565 Description Input Output 仅包含一个整数,表示可以 ...

  6. 图——拓扑排序(uva10305)

    John has n tasks to do. Unfortunately, the tasks are not independent and the execution of one task i ...

  7. Java排序算法——拓扑排序

    package graph; import java.util.LinkedList; import java.util.Queue; import thinkinjava.net.mindview. ...

  8. poj 3687(拓扑排序)

    http://poj.org/problem?id=3687 题意:有一些球他们都有各自的重量,而且每个球的重量都不相同,现在,要给这些球贴标签.如果这些球没有限定条件说是哪个比哪个轻的话,那么默认的 ...

  9. 拓扑排序 - 并查集 - Rank of Tetris

    Description 自从Lele开发了Rating系统,他的Tetris事业更是如虎添翼,不久他遍把这个游戏推向了全球. 为了更好的符合那些爱好者的喜好,Lele又想了一个新点子:他将制作一个全球 ...

随机推荐

  1. Android更新UI的几种方式

    之前做过一个Android采集心电图数据的程序,那才是真正的多线程,之前写的小程序:比如下载个文件,从socket接受大一点的数据流然后在ui上更新进度,我都感觉这就叫做多线程了,其实这啥都不算,用个 ...

  2. Day9 - Python 多线程、进程

    Python之路,Day9, 进程.线程.协程篇   本节内容 操作系统发展史介绍 进程.与线程区别 python GIL全局解释器锁 线程 语法 join 线程锁之Lock\Rlock\信号量 将线 ...

  3. 进程外session(session保存在sqlserver)

    .Session保存在SQLServer中配置方法 )运行.NetFramework安装目录下对应版本的aspnet_regsql.exe 来创建相关的数据库.表和存储过程等,比如: C:\Windo ...

  4. Unicode 与多字节编码

    int _tmain(int argc, _TCHAR* argv[]) { //定义LPWSTR 类型的宽字符串 LPWSTR szUnicode = L"This is a Unicod ...

  5. (转)ThinkPHP使用心得分享-分页类Page的用法

    转之--http://www.jb51.net/article/50138.htm ThinkPHP中的Page类在ThinkPHP/Extend/Library/ORG/Util/Page.clas ...

  6. 7——使用TextView实现跑马灯

    首先给TextView添加一个单行限制: android:singleLine="true" - 解决方案一 更改TextView的一个属性: android:ellipsize= ...

  7. <body>标签,网页上显示的内容放在这里

    在网页上要展示出来的页面内容一定要放在body标签中.如下图是一个新闻文章的网页. 在浏览器中的显示效果: 示例: <!DOCTYPE HTML> <html> <hea ...

  8. Action class [userAction] not found

    今天在做SSI框架整合的时候报了一个这样的错误:Action class [userAction] not found - action - file:F:\workspace\.metadata\. ...

  9. java学习——网络编程UDP

    UDP 将数据及源和目的封装成数据包中,不需要建立连接 每个数据报的大小限制在64k内 因无连接,是不可靠协议 不需要建立连接,速度快 TCP 建立连接,形成传输数据的通道 在连接中进行大数据量传输 ...

  10. Hive学习之一 《Hive的介绍和安装》

    一.什么是Hive Hive是建立在 Hadoop 上的数据仓库基础构架.它提供了一系列的工具,可以用来进行数据提取转化加载(ETL),这是一种可以存储.查询和分析存储在 Hadoop 中的大规模数据 ...