FZU 2215 Simple Polynomial Problem(简单多项式问题)
Description |
题目描述 |
You are given an polynomial of x consisting of only addition marks, multiplication marks, brackets, single digit numbers, and of course the letter x. For example, a valid polynomial would be: (1+x)*(1+x*x+x+5)+1*x*x. You are required to write the polynomial into it's minimal form by combining the equal terms. For example, (1+x)*(1+x) would be written as x^2+2*x+1. Also, (1+x)*(1+x*x+x+5)+1*x*x would be written as x^3+3*x^2+7*x+6. |
给你一个由加号、乘号、括号、一位数以及未知数x组成的多项式。例如,一个有效多项式可以是:(1+x)*(1+x*x+x+5)+1*x*x。 现在你需要写出与原式等价的最小多项式形式。 例如,(1+x)*(1+x)应该改写成x^2+2*x+1。 同理,(1+x)*(1+x*x+x+5)+1*x*x 应该改写成x^3+3*x^2+7*x+6。 |
Input |
输入 |
The first line contains an integer T, meaning the number of the cases. 1 <= T <= 50. For each test case, there will be one polynomial which it's length would be not larger than 1000. It is guaranteed that every input polynomial is valid, and every number would be a single digit. |
输入的首行是一个整数T,表示测试样例的数量。1 <= T <= 50。 对于每个测试样例,都有一个长度不超过1000的多项式。 保证输入字符串均有效,并且所有数字都是一位数。 |
Output |
输出 |
For each polynomial, output it's minimal form. If the polynomial's minimal form has n terms, output n space-separated integers. You only have to output each term's corresponding constant (from highest to lowest). In case the constant gets too big, output the remainder of dividing the answer by 1000000007 (1e9 + 7). |
输出每个多项式的最小形式。如果最小多项式有n项,则输出n个用空格分隔的整数。 你只要输出每项对应的系数(从高到低)。为防止输出过大,输出的结果模1000000007(1e9 + 7)。 |
Sample Input - 输入样例 |
Sample Output - 输出样例 |
4 1*(1+1*(1+1)) (1+x)*(1+x) x*((1+x)*(1+x*x+x+5)+1*x*x) (x*x*x*0+x*2)*x |
3 1 2 1 1 3 7 6 0 2 0 0 |
【题解】
类似表达式求值的做法,表达式求值分为数字栈和符号栈,这里的区别就是把数字栈换成多项式栈。当然,由于储存方式的不同,写法也不唯一。
需要注意的是运算时候数据是否溢出。
【代码 C++】
下面贴出代码版本比较原始,不过个人认为可读性比较好,算法简单。当然留了优化的空间,有兴趣(强迫症)可以试试……
注意,因为下面代码中使用的gets()由于不安全,C11标准中删除了gets(),使用一个新的更安全的函数gets_s()替代。
#include<cstdio>
#include<cstring>
__int64 polynomial[][], mi, pi;
char data[], mark[], *di;
bool j_mark(){
switch (*di){
case : return ;
case '(': return ;
case ')': return ;
case '+':
if (mark[mi] == '*' || mark[mi] == '+') return ;
else return ;
case '*':
if (mark[mi] == '*') return ;
return ;
default: return ;
}
}
bool j_count(){
switch (*di){
case : return mark[mi] ? : ;
case ')':
if (mark[mi] != '(') return ;
--mi;
return ;
case '+':
if (mark[mi] == '*' || mark[mi] == '+') return ;
mark[++mi] = '+';
return ;
case '*':
if (mark[mi] == '*') return ;
mark[++mi] = '*';
return ;
default: return ;
}
}
void count(){
__int64 temp[];
memset(temp, , sizeof(temp));
if (mark[mi] == '+'){
for (int i = ; i <= ; ++i)
temp[i] = (polynomial[pi][i] + polynomial[pi - ][i]) % ;
}
else{
int i, j;
for (i = ; i <= ; ++i){
if (!polynomial[pi][i]) continue;
for (j = ; j <= ; ++j){
if (!polynomial[pi - ][j]) continue;
temp[i + j] += (polynomial[pi][i] * polynomial[pi - ][j]) % ;
temp[i + j] %= ;
}
}
}
--pi; --mi;
memcpy(polynomial[pi], temp, sizeof(temp));
return;
}
void opt(){
int st = ;
while (st){
if (!polynomial[][st]) --st;
else break;
}
printf("%d", polynomial[][st]);
for (--st; ~st; --st) printf(" %d", polynomial[][st]);
puts("");
return;
}
int main(){
int T;
scanf("%d", &T); getchar();
while (T--){
pi = -; mark[] = mi = ;
for (gets(data), di = data; true; ++di){
if (*di < ''){//符号
if (j_mark()) mark[++mi] = *di;
else{
while (j_count()) count();
}
}
else{
++pi;
memset(polynomial[pi], , sizeof(polynomial[pi]));
if (*di > '') polynomial[pi][] = ;
else polynomial[pi][] = *di - '';
}
if (!*di) break;
}
opt();
}
return ;
}
FZU 2215
FZU 2215
FZU 2215 Simple Polynomial Problem(简单多项式问题)的更多相关文章
- hdu------(1757)A Simple Math Problem(简单矩阵快速幂)
A Simple Math Problem Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Ot ...
- FZU - 2218 Simple String Problem(状压dp)
Simple String Problem Recently, you have found your interest in string theory. Here is an interestin ...
- FZU 2218 Simple String Problem(简单字符串问题)
Description 题目描述 Recently, you have found your interest in string theory. Here is an interesting que ...
- FZU - 2218 Simple String Problem 状压dp
FZU - 2218Simple String Problem 题目大意:给一个长度为n含有k个不同字母的串,从中挑选出两个连续的子串,要求两个子串中含有不同的字符,问这样的两个子串长度乘积最大是多少 ...
- FZU2215 Simple Polynomial Problem(中缀表达求值)
比赛时没做出这题太可惜了. 赛后才反应过来这就是个中缀表达式求值,数字栈存的不是数字而是多项式. 而且,中缀表达式求值很水的,几行就可以搞定. #include<cstdio> #incl ...
- 一起啃PRML - 1.1 Example: Polynomial Curve Fitting 多项式曲线拟合
一起啃PRML - 1.1 Example: Polynomial Curve Fitting @copyright 转载请注明出处 http://www.cnblogs.com/chxer/ 前言: ...
- BZOJ 3489: A simple rmq problem
3489: A simple rmq problem Time Limit: 40 Sec Memory Limit: 600 MBSubmit: 1594 Solved: 520[Submit] ...
- hdu4976 A simple greedy problem. (贪心+DP)
http://acm.hdu.edu.cn/showproblem.php?pid=4976 2014 Multi-University Training Contest 10 1006 A simp ...
- HDU 5795 A Simple Nim(简单Nim)
p.MsoNormal { margin: 0pt; margin-bottom: .0001pt; text-align: justify; font-family: Calibri; font-s ...
随机推荐
- 不错的linux下通用的java程序启动脚本(转载)
转自:http://www.cnblogs.com/langtianya/p/4164151.html 虽然写起动shell的频率非常不高...但是每次要写都要对付一大堆的jar文件路径,新加jar包 ...
- JDK结构介绍
dt.jar和tools.jar位于:{Java_Home}/lib/下, 而rt.jar位于:{Java_Home}/jre/lib/下, 其中: (1) rt.jar是JAVA基础类库,也就是你在 ...
- UINavigationController侧滑滑动返回 卡死问题
UINavigationController滑动返回,有需要的朋友可以参考下. 最近做了UINavigationController的滑动返回(IOS7及以后系统默认支持的), 主要分成以下几步以及碰 ...
- Python升级Yum不能使用解决
1.系统版本 [root@vm10-254-206-95 ~]# cat /etc/issue CentOS release 6.4 (Final) Kernel \r on an \m 2.系统默认 ...
- 用C#.NET编写软件注册机
验证注册码是保护软件产品产权的常用手段.一般过程如下, 1. 软件发行者收集用户特有的信息: 2. 根据用户特有的信息,使用注册机生成注册码并把注册码发给客户: 3. 向软件导入注册码,由软件自 ...
- Java获取当前第几周【转】
本文copy自:http://swxzqsd.blog.sohu.com/156208509.html 作者:camelcanoe String today = "2010-01-11&qu ...
- [HTML]HTML5实现可编辑表格
HTML5实现的简单的可编辑表格 [HTML]代码 <!DOCTYPE html > <html > <head> <meta charset="u ...
- [OSG][转]osg格式文件
转自:http://blog.csdn.net/timothyfly/article/details/7826139 osg格式文件中如何处理多个节点共享一个子节点 下面一段程序中,共有三个Group ...
- MultiSelectComboBox(一)
1. MultiSelectComboBox.xaml <UserControl x:Class="MultiSelectComboBox.MultiSelectComboBox&qu ...
- Dual Core CPU
Dual Core CPU Time Limit: 15000MS Memory Limit: 131072K Total Submissions: 20935 Accepted: 9054 Case ...