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(简单多项式问题)的更多相关文章

  1. hdu------(1757)A Simple Math Problem(简单矩阵快速幂)

    A Simple Math Problem Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Ot ...

  2. FZU - 2218 Simple String Problem(状压dp)

    Simple String Problem Recently, you have found your interest in string theory. Here is an interestin ...

  3. FZU 2218 Simple String Problem(简单字符串问题)

    Description 题目描述 Recently, you have found your interest in string theory. Here is an interesting que ...

  4. FZU - 2218 Simple String Problem 状压dp

    FZU - 2218Simple String Problem 题目大意:给一个长度为n含有k个不同字母的串,从中挑选出两个连续的子串,要求两个子串中含有不同的字符,问这样的两个子串长度乘积最大是多少 ...

  5. FZU2215 Simple Polynomial Problem(中缀表达求值)

    比赛时没做出这题太可惜了. 赛后才反应过来这就是个中缀表达式求值,数字栈存的不是数字而是多项式. 而且,中缀表达式求值很水的,几行就可以搞定. #include<cstdio> #incl ...

  6. 一起啃PRML - 1.1 Example: Polynomial Curve Fitting 多项式曲线拟合

    一起啃PRML - 1.1 Example: Polynomial Curve Fitting @copyright 转载请注明出处 http://www.cnblogs.com/chxer/ 前言: ...

  7. BZOJ 3489: A simple rmq problem

    3489: A simple rmq problem Time Limit: 40 Sec  Memory Limit: 600 MBSubmit: 1594  Solved: 520[Submit] ...

  8. hdu4976 A simple greedy problem. (贪心+DP)

    http://acm.hdu.edu.cn/showproblem.php?pid=4976 2014 Multi-University Training Contest 10 1006 A simp ...

  9. HDU 5795 A Simple Nim(简单Nim)

    p.MsoNormal { margin: 0pt; margin-bottom: .0001pt; text-align: justify; font-family: Calibri; font-s ...

随机推荐

  1. 【python cookbook】【字符串与文本】8.编写多行模式的正则表达式

    问题:用正则表达式对一段文本块做匹配,但是希望在进行匹配时能够跨越多行 解决方案: 1.正则表达式添加对换行符的支持: 2.re.compile()函数一个有用的标记-re.DOTALL使得正则表达式 ...

  2. LUA之面向对象

    Account = { balance=0, withdraw = function (self, v) self.balance = self.balance - v end } function ...

  3. Java字符串转换

    public class StringConvertToInt{ public static void main(String[] args) { String a ="12a34bW()5 ...

  4. 5.1JavaScript精华

    9.使用Promises Promises,是Javascript表现item的一种方式.它执行异步工作,在未来的某个时间点完成.遇到最多的promises,是使用Ajax请求.浏览器在后台发起HTT ...

  5. HDU 2222:Keywords Search(AC自动机模板)

    http://acm.hdu.edu.cn/showproblem.php?pid=2222 KMP是单模式串匹配的算法,而AC自动机是用于多模式串匹配的算法.主要由Trie和KMP的思想构成. 题意 ...

  6. Python 字典(Dictionary)

    字典是另一种可变容器模型,且可存储任意类型对象. 字典的每个键值(key=>value)对用冒号(:)分割,每个对之间用逗号(,)分割,整个字典包括在花括号({})中 ,格式如下所示: d = ...

  7. 实现Fragment的切换和ViewPager自动循环设置切换时间

    1.FragmentActivity与Fragment之间的用法 2.实现ViewPager自动轮换,设置移动的时间 通过反射获取mScrooler这个对象: Field mScroller; mSc ...

  8. ..在lua中运用

    ..连接两个字符串 th> a="hello" th> b="world" th> print(a..b) helloworld th> ...

  9. 2016年11月21日 星期一 --出埃及记 Exodus 20:12

    2016年11月21日 星期一 --出埃及记 Exodus 20:12 "Honor your father and your mother, so that you may live lo ...

  10. 关于nodejs4.0 npm乱码以及离线全局安装时要注意的问题

    近期nodejs更新的到了4.~版本,融合了io.js,升级了v8引擎,对于之前的操作有些变化,在这里提醒大家注意: 1.npm在install和remove时发生乱码,并报出"runTop ...