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. jQuery上传插件,文件上传测试用例

    jQuery上传插件,文件上传测试用例 jQuery File Upload-jQuery上传插件介绍http://www.jq22.com/jquery-info230 jQuery File Up ...

  2. JSP直接连接sql2008数据库并显示

    <%@ page contentType="text/html; charset=utf-8" language="java" errorPage=&qu ...

  3. Mysql密码恢复

    由于种种原因,Mysql root用户的密码可能被恶意篡改,这个时候就需要对Mysql进行密码恢复了.大致步骤如下: 1.修改MySQL的登录设置: # vi /etc/my.cnf 在[mysqld ...

  4. Mysql slow query log

    一.概念部分:  顾名思义,慢查询日志中记录的是执行时间较长的query,也就是我们常说的slow query,通过设--log-slow-queries[=file_name]来打开该功能并设置记录 ...

  5. Effective C++:条款27——条款

    条款27:尽量少做转型动作 单一对象可能拥有一个以上的地址!

  6. [ios]纯代码实现UITableViewCell的自定义扩展

    (转)参考:http://blog.sina.com.cn/s/blog_65cbfb2b0101cd60.html 第一种, 简单的增加UITableViewCell一些小功能 例如在cell上面添 ...

  7. vc6

    适合win7使用的: http://pan.baidu.com/s/1nt7SG57

  8. HDU(2089),数位DP

    题目链接:http://acm.split.hdu.edu.cn/showproblem.php?pid=2089 不要62 Time Limit: 1000/1000 MS (Java/Others ...

  9. malloc与kmalloc

    在设备驱动程序中动态开辟内存,不是用malloc,而是kmalloc,或者用get_free_pages直接申请页.释放内存用的是kfree,或free_pages. 对于提供了MMU(存储管理器,辅 ...

  10. hibernate的like用法(用占位符解决)

    原本我的写法:Query repeatClientQuery=querysession.createQuery("from ClientInfo as a " +"whe ...