SPOJ 364 Pocket Money 简单DP
跟矩阵链乘同类型的题……
输出用%llu不是%I64u……
几组数据:
14
1+2*4+3*4+5*0
0*5*6+7*3+2
3+0+6+7+0+4
4*5+7*1*1+1
2*0+3*4*0+5*6+7+8
1+2+3*1+2*1+0
0+2*2+3*0+4
8*9*0+2
2*0+1+0*3
2*0*3+7+1*0*3
1+3*0*5+2
1+1+1+1+1
2*1+1+2*1+2*1+6
1*2*4*0*6*3
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cctype>
#include <algorithm> #define LL unsigned long long int using namespace std; const int MAXN = ; int cntNum, cntOp;
char str[MAXN];
char op[MAXN];
LL num[MAXN];
bool vis[MAXN][MAXN];
LL dpMax[MAXN][MAXN];
LL dpMin[MAXN][MAXN]; void show()
{
printf("All nums: \n");
for ( int i = ; i < cntNum; ++i )
printf( "%I64d ", num[i] ); printf("\nAll Ops:\n");
for ( int i = ; i < cntOp; ++i )
putchar( op[i] );
puts("");
return;
} void chuli()
{
cntNum = cntOp = ;
int len = strlen(str);
for ( int i = ; i < len; ++i )
{
LL tmp = ;
while ( i < len && isdigit( str[i] ) )
{
tmp = tmp * + ( str[i] - '' );
++i;
}
num[ cntNum++ ] = tmp;
if ( i < len )
op[ cntOp++ ] = str[i];
} //show();
return;
} LL DPMAX( int l, int r )
{
LL &res = dpMax[l][r];
if ( vis[l][r] ) return res; vis[l][r] = true;
if ( l == r ) return res = num[l];
res = ; for ( int k = l; k < r; ++k )
{
if ( op[k] == '+' )
res = max( res, DPMAX( l, k ) + DPMAX( k + , r ) );
else if ( op[k] == '*' )
res = max( res, DPMAX( l, k ) * DPMAX( k + , r ) );
}
//printf( "dp[%d][%d]=%I64u\n", l, r, res ); return res;
} LL DPMIN( int l, int r )
{
LL &res = dpMin[l][r];
if ( vis[l][r] ) return res; vis[l][r] = true;
if ( l == r ) return res = num[l];
bool first = true; for ( int k = l; k < r; ++k )
{
if ( op[k] == '+' )
{
if ( first )
{
res = DPMIN( l, k ) + DPMIN( k + , r );
first = false;
}
else
res = min( res, DPMIN( l, k ) + DPMIN( k + , r ) );
}
else if ( op[k] == '*' )
{
if ( first )
{
res = DPMIN( l, k ) * DPMIN( k + , r );
first = false;
}
else
res = min( res, DPMIN( l, k ) * DPMIN( k + , r ) );
}
}
//printf( "dp[%d][%d]=%I64u\n", l, r, res );
return res;
} int main()
{
int T;
scanf( "%d", &T );
while ( T-- )
{
scanf( "%s", str );
chuli();
memset( dpMax, , sizeof(dpMax) );
memset( dpMin, , sizeof(dpMin) ); memset( vis, false, sizeof(vis) );
LL maxx = DPMAX( , cntNum - ); memset( vis, false, sizeof(vis) );
LL minn = DPMIN( , cntNum - ); printf( "%llu %llu\n", maxx, minn );
}
return ;
}
SPOJ 364 Pocket Money 简单DP的更多相关文章
- HDU 1087 简单dp,求递增子序列使和最大
Super Jumping! Jumping! Jumping! Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 ...
- Codeforces Round #260 (Div. 1) A. Boredom (简单dp)
题目链接:http://codeforces.com/problemset/problem/455/A 给你n个数,要是其中取一个大小为x的数,那x+1和x-1都不能取了,问你最后取完最大的和是多少. ...
- codeforces Gym 100500H A. Potion of Immortality 简单DP
Problem H. ICPC QuestTime Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100500/a ...
- 简单dp --- HDU1248寒冰王座
题目链接 这道题也是简单dp里面的一种经典类型,递推式就是dp[i] = min(dp[i-150], dp[i-200], dp[i-350]) 代码如下: #include<iostream ...
- poj2385 简单DP
J - 简单dp Crawling in process... Crawling failed Time Limit:1000MS Memory Limit:65536KB 64bit ...
- hdu1087 简单DP
I - 简单dp 例题扩展 Crawling in process... Crawling failed Time Limit:1000MS Memory Limit:32768KB ...
- poj 1157 LITTLE SHOP_简单dp
题意:给你n种花,m个盆,花盆是有顺序的,每种花只能插一个花盘i,下一种花的只能插i<j的花盘,现在给出价值,求最大价值 简单dp #include <iostream> #incl ...
- hdu 2471 简单DP
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2571 简单dp, dp[n][m] +=( dp[n-1][m],dp[n][m-1],d[i][k ...
- Codeforces 41D Pawn 简单dp
题目链接:点击打开链接 给定n*m 的矩阵 常数k 以下一个n*m的矩阵,每一个位置由 0-9的一个整数表示 问: 从最后一行開始向上走到第一行使得路径上的和 % (k+1) == 0 每一个格子仅仅 ...
随机推荐
- delete分析 引用于 http://www.cnblogs.com/yuzhongwusan/archive/2012/06/14/2549879.html
最近重新温习JS,对delete操作符一直处于一知半解的状态,偶然发现一篇文章,对此作了非常细致深入的解释,看完有茅塞顿开的感觉,不敢独享,大致翻译如下. 原文地址:http://perfection ...
- ABP学习 解决:Update-Database : 无法将“Update-Database”项识别为 cmdlet、函数、脚本文件或可运行程序的名称的问题
原因: 没有引用EntityFramework命令 解决: 在程序包管理器控制台执行如下命令:Import-Module 项目路径\packages\EntityFramework.6.1.3(EF版 ...
- WKWebView 屏蔽长按手势 - iOS
研究半天还跟正常套路不一样,WKWebView 需要将 JS 注入进去,套路啊 ... 查半天资料,为了后者们开发可以提高效率,特此分享一下,不到的地方多多包涵哈. 废话不多说,直接上 code,将如 ...
- Python 文件访问模式
f = open('xxx文件', '访问模式') r 以只读方式打开文件(read).文件的指针将会放在文件的开头.默认模式. w 打开一个文件只用于写入(write).如果该文件已存在则 ...
- 微信小程序清除默认样式
1.清除button的默认样式 button::after{border:none;}input{outline:none;border:none;list-style: none;}
- 解决Cannot reinitialise DataTable问题 解决dataTables再次调用不能清空数据
这里我们只需要多设置一个字段 “destroy" : true 即可 或者设置retrieve: true, 或者在加载datatable之前使用$("#example" ...
- 安装破解IDEA(个人使用)
安装的过程,许多的教程都会有,我在这里附上一两个链接吧:https://blog.csdn.net/newabcc/article/details/80601933 他这里也有破解过程,但是比较麻烦, ...
- python3 井字棋 GUI - 人机对战、机器对战 (threading、tkinter库)
python3 井字棋 GUI - 人机对战.机器对战 功能 GUI界面 人机对战(可选择机器先走) 机器对战(50局) 流程图 内核 棋盘 [0][1][2] [3][4][5] [6][7][8] ...
- oracle中序列,同义词的创建
序列 序列是用来生成唯一,连续的整数的数据库对象.序列通常用来自动生成主机那或唯一键的值.序列可以按升序排序, 也可以按降序排序.例如,销售流水表中的流水号可以使用序列自动生成. 创建序列语法: cr ...
- 面试题 LazyMan 的Rxjs实现方式
前言 笔者昨天在做某公司的线上笔试题的时候遇到了最后一道关于如何实现LazyMan的试题,题目如下 实现一个LazyMan,可以按照以下方式调用:LazyMan("Hank")输出 ...