DP测试总结
T1:三取方格数
题目描述
设有N*N的方格图,我们将其中的某些方格填入正整数,
而其他的方格中放入0。
某人从图得左上角出发,可以向下走,也可以向右走,直到到达右下角。
在走过的路上,他取走了方格中的数。(取走后方格中数字变为0)
此人从左上角到右下角共走3次,试找出3条路径,使得取得的数总和最大。
输入
第一行:N (4<=N<=20)
接下来一个N*N的矩阵,矩阵中每个元素不超过80,不小于0
输出
一行,表示最大的总和。
样例输入
1 2 3 4
2 1 3 4
1 2 3 4
1 3 2 4
样例输出
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int N=;
int gi(){
int str=;char ch=getchar();
while(ch>'' || ch<'')ch=getchar();
while(ch>='' && ch<='')str=str*+ch-,ch=getchar();
return str;
}
int f[N*][N][N][N],a[N][N];
int main()
{
//freopen("pp.in","r",stdin);
int n=gi();
for(int i=;i<=n;i++)
for(int j=;j<=n;j++)
a[i][j]=gi();
int tmp=,from,to;
for(int i=;i<n+n;i++)
{
from=i-n+>?i-n+:;
to=i<n?i:n;
for(int j=from;j<=to;j++)
{
for(int k=from;k<=to;k++)
{
for(int g=from;g<=to;g++)
{
tmp=;
if(f[i-][j][k][g]>tmp)tmp=f[i-][j][k][g];
if(f[i-][j-][k][g]>tmp)tmp=f[i-][j-][k][g];
if(f[i-][j][k-][g]>tmp)tmp=f[i-][j][k-][g];
if(f[i-][j][k][g-]>tmp)tmp=f[i-][j][k][g-];
if(f[i-][j-][k-][g]>tmp)tmp=f[i-][j-][k-][g];
if(f[i-][j-][k][g-]>tmp)tmp=f[i-][j-][k][g-];
if(f[i-][j][k-][g-]>tmp)tmp=f[i-][j][k-][g-];
if(f[i-][j-][k-][g-]>tmp)tmp=f[i-][j-][k-][g-];
f[i][j][k][g]=tmp+a[j][i-j+];
if(j!=k)f[i][j][k][g]+=a[k][i-k+];
if(g!=k && g!=j)f[i][j][k][g]+=a[g][i-g+];
}
}
}
}
printf("%d",f[n+n-][n][n][n]);
return ;
}
T2:建造栅栏:
题目描述
勤奋的Farmer John想要建造一个四面的栅栏来关住牛们。他有一块长为n(4<=n<=2500)的木板,他想把这块本板切成4块。这四块小木板可以是任 何一个长度只要Farmer John能够把它们围成一个合理的四边形。他能够切出多少种不同的合理方案。注意: *只要大木板的切割点不同就当成是不同的方案(像全排列那样),不要担心另外的特殊情况,go ahead。 *栅栏的面积要大于0. *输出保证答案在longint范围内。 *整块木板都要用完。
输入
*第一行:一个数n
输出
*第一行:合理的方案总数
样例输入
样例输出
提示
Farmer John能够切出所有的情况为: (1, 1, 1,3); (1, 1, 2, 2); (1, 1, 3, 1); (1, 2, 1, 2); (1, 2, 2, 1); (1, 3,1, 1);
(2, 1, 1, 2); (2, 1, 2, 1); (2, 2, 1, 1); or (3, 1, 1, 1).
下面四种 -- (1, 1, 1, 3), (1, 1, 3, 1), (1, 3, 1, 1), and (3,1, 1, 1) – 不能够组成一个四边形.
题解:
F[i][j]表示把i分成j份的方案数,要保证合法,就得保证所有的方案中不包括>n/2的边
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
typedef long long ll;
ll f[][];
int main()
{
int n;
cin>>n;
int from,to,k,pp;
if(n%)k=(n>>);
else k=(n>>)-;
f[][]=;
for(int i=;i<=n;i++)
{
from=i<?i:;
for(int j=;j<=from;j++)
{
to=j-<i-k?i-k:j-;
for(int g=to;g<=i-;g++)
f[i][j]+=f[g][j-];
}
}
printf("%lld",f[n][]);
return ;
}
T3:
题目描述
Some of you may have played a game called 'Blocks'. There are n blocks in a row, each box has a color. Here is an example: Gold, Silver, Silver, Silver, Silver, Bronze, Bronze, Bronze, Gold.
The corresponding picture will be as shown below
:
If some adjacent boxes are all of the same color, and both the box to
its left(if it exists) and its right(if it exists) are of some other
color, we call it a 'box segment'. There are 4 box segments. That is:
gold, silver, bronze, gold. There are 1, 4, 3, 1 box(es) in the segments
respectively.
Every time, you can click a box, then the whole segment containing
that box DISAPPEARS. If that segment is composed of k boxes, you will
get k*k points. for example, if you click on a silver box, the silver
segment disappears, you got 4*4=16 points.
Now let's look at the picture below:
N 个不同颜色的方块,排成一行,左右相邻颜色相同的方块属于同一段。上图有 4 段长度分
别为 1,4,3,1。
每次单击一个方块,包含这个方块的整段将消失。如果该段由 k 个方块组成,则将得到 k* k
分 。 例 如 , 如 果 你 点 击 一 个 银 盒 , 银 色 段 消 失 , 你 有 4 * 4 = 16 分 。
The first one is OPTIMAL.
Find the highest score you can get, given an initial state of this game.
输入
Each case contains two lines. The first line contains an integer n(1<=n<=200), the number of boxes. The second line contains n integers, representing the colors of each box. The integers are in the range 1~n.
输出
For each test case, print the case number and the highest possible score.
样例输入
样例输出
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int N=;
int a[N],ls[N],col[N],f[N][N][N];
int dfs(int l,int r,int len)
{
if(l>r)return ;
if(f[l][r][len]!=-)return f[l][r][len];
f[l][r][len]=dfs(l,r-,)+(ls[r]+len)*(ls[r]+len);
for(int i=l;i<r;i++)
if(col[i]==col[r])f[l][r][len]=max(f[l][r][len],dfs(l,i,len+ls[r])+dfs(i+,r-,));
return f[l][r][len];
}
int main()
{
//freopen("pp.in","r",stdin);
int n,to=,m=;
scanf("%d",&n);
memset(f,-,sizeof(f));
a[n+]=-;
for(int i=;i<=n;i++)scanf("%d",&a[i]);
for(int i=;i<=n;i++)
{
if(a[i]==a[i-])continue;
to=i;col[++m]=a[i];ls[m]=;
while(a[i]==a[to+])to++,ls[m]++;
}
printf("%d",dfs(,m,));
}
T4:[USACO15JAN]电影移动Moovie Mooving
题目描述
Bessie is out at the movies. Being mischievous as always, she has decided to hide from Farmer John for L (1 <= L <= 100,000,000) minutes, during which time she wants to watch movies continuously. She has N (1 <= N <= 20) movies to choose from, each of which has a certain duration and a set of showtimes during the day. Bessie may enter and exit a movie at any time during one if its showtimes, but she does not want to ever visit the same movie twice, and she cannot switch to another showtime of the same movie that overlaps the current showtime.
Help Bessie by determining if it is possible for her to achieve her goal of watching movies continuously from time 0 through time L. If it is, determine the minimum number of movies she needs to see to achieve this goal (Bessie gets confused with plot lines if she watches too many movies).
奶牛贝西想连续看L (1 <= L <= 100,000,000)分钟的电影,有 N (1 <= N <= 20)部电影可供选择,每部电影会在一天的不同时段放映。
贝西可以在一部电影播放过程中的任何时间进入或退出放映厅。但她不愿意重复看到一部电影,所以每部电影她最多看到一次。她也不能在看一部电影的过程中,换到另一个正在播放相同电影的放映厅。
请帮贝西计算她能够做到从0到L分钟连续不断地观看电影,如果能,请计算她最少看几部电影就行了。
输入
The first line of input contains N and L.
The next N lines each describe a movie. They begin with its integer duration, D (1 <= D <= L) and the number of showtimes, C (1 <= C <= 1000). The remaining C integers on the same line are each in the range 0..L, and give the starting time of one of the showings of the movie. Showtimes are distinct, in the range 0..L, and given in increasing order.
输出
A single integer indicating the minimum number of movies that Bessie
needs to see to achieve her goal. If this is impossible output -1
instead.
样例输入
样例输出
提示
Bessie should attend the first showing of the fourth movie from time 0 to time 20. Then she watches the first showing of the first movie
from time 20 to time 65. Finally she watches the last showing of the second movie from time 65 to time 100.
题解:
水的状压DP,F[i]表示i状态下最大能消耗的时间 二分优化下就过了
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int N=;
int gi(){
int str=;char ch=getchar();
while(ch>'' || ch<'')ch=getchar();
while(ch>='' && ch<='')str=str*+ch-,ch=getchar();
return str;
}
int f[<<N],t[N],c[N],d[N][];
int pf(int i,int x)
{
int l=,r=c[i],mid,ans=;
while(l<=r)
{
mid=(l+r)>>;
if(d[i][mid]<=x)ans=d[i][mid],l=mid+;
else r=mid-;
}
return ans;
}
int main()
{
//freopen("pp.in","r",stdin);
int n=gi(),l=gi();
for(int i=;i<=n;i++)
{
t[i]=gi();c[i]=gi();
for(int j=;j<=c[i];j++)d[i][j]=gi();
}
int to,tmp;
for(int j=;j<=(<<n)-;j++)
{
for(int i=;i<=n;i++)
{
if(((<<(i-))&j))continue;
to=(j|(<<(i-)));
tmp=pf(i,f[j]);
if(tmp+t[i]>f[to])f[to]=tmp+t[i];
}
}
int ans=,sum=;
for(int j=(<<n)-;j>=;j--)
{
if(f[j]>l)
{
sum=;
tmp=j;
while(tmp>)tmp-=(tmp&(-tmp)),sum++;
if(sum<ans)ans=sum;
}
}
if(ans!=)
printf("%d",ans);
else printf("-1");
return ;
}
DP测试总结的更多相关文章
- BZOJ 1911: [Apio2010]特别行动队 [斜率优化DP]
1911: [Apio2010]特别行动队 Time Limit: 4 Sec Memory Limit: 64 MBSubmit: 4142 Solved: 1964[Submit][Statu ...
- 2013 Asia Changsha Regional Contest---Josephina and RPG(DP)
题目链接 http://acm.hdu.edu.cn/showproblem.php?pid=4800 Problem Description A role-playing game (RPG and ...
- AEAI DP V3.7.0 发布,开源综合应用开发平台
1 升级说明 AEAI DP 3.7版本是AEAI DP一个里程碑版本,基于JDK1.7开发,在本版本中新增支持Rest服务开发机制(默认支持WebService服务开发机制),且支持WS服务.RS ...
- AEAI DP V3.6.0 升级说明,开源综合应用开发平台
AEAI DP综合应用开发平台是一款扩展开发工具,专门用于开发MIS类的Java Web应用,本次发版的AEAI DP_v3.6.0版本为AEAI DP _v3.5.0版本的升级版本,该产品现已开源并 ...
- BZOJ 1597: [Usaco2008 Mar]土地购买 [斜率优化DP]
1597: [Usaco2008 Mar]土地购买 Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 4026 Solved: 1473[Submit] ...
- [斜率优化DP]【学习笔记】【更新中】
参考资料: 1.元旦集训的课件已经很好了 http://files.cnblogs.com/files/candy99/dp.pdf 2.http://www.cnblogs.com/MashiroS ...
- BZOJ 1010: [HNOI2008]玩具装箱toy [DP 斜率优化]
1010: [HNOI2008]玩具装箱toy Time Limit: 1 Sec Memory Limit: 162 MBSubmit: 9812 Solved: 3978[Submit][St ...
- px、dp和sp,这些单位有什么区别?
DP 这个是最常用但也最难理解的尺寸单位.它与“像素密度”密切相关,所以 首先我们解释一下什么是像素密度.假设有一部手机,屏幕的物理尺寸为1.5英寸x2英寸,屏幕分辨率为240x320,则我们可以计算 ...
- android px转换为dip/dp
/** * 根据手机的分辨率从 dp 的单位 转成为 px(像素) */ public int dipTopx(Context context, float dpValue) { final floa ...
随机推荐
- 《高级软件测试》11.14.安装和运行Jira
今日任务完成情况如下: 小段:研究Jira在Linux的安装教程 小费:尝试在Ubuntu下安装Jira 小高:查阅了关于Jira软件的介绍和安装教程,下载准备明天安装,并学习使用 小王:注册Jira ...
- HAOI 2012 高速公路
https://www.luogu.org/problem/show?pid=2221 题目描述 Y901高速公路是一条重要的交通纽带,政府部门建设初期的投入以及使用期间的养护费用都不低,因此政府在这 ...
- JAVA_SE基础——56.包的创建
接下来我来给大家讲下--包 , 先看一段代码 class Demo1{ public static void main(String[] args) { System.out.println(&quo ...
- 腾讯云服务器上安装phstudy和lnmp
phpstudy的安装:wget -c http://lamp.phpstudy.net/phpstudy.bin chmod +x phpstudy.bin #权限设置./phpstudy.bin ...
- Mego(04) - Mego入门
本教程演示创建一个简单的数据库访问及更新数据的示例以便于初步了解下Mego框架的使用. 文中使用Visual Studio 2017版本. 创建Visual Studio项目 创建一个名为 MegoS ...
- BizTalk Server 2010高可用方案
BizTalk Server 2010高可用方案 本文介绍了 Microsoft BizTalk Server 中通过对主机的各层进行扩展提供高可用性的方案. 分隔各个区域的功能分为不同的主机和中的层 ...
- 用Vue.js开发微信小程序:开源框架mpvue解析
前言 mpvue 是一款使用 Vue.js 开发微信小程序的前端框架.使用此框架,开发者将得到完整的 Vue.js 开发体验,同时为 H5 和小程序提供了代码复用的能力.如果想将 H5 项目改造为小程 ...
- Mybatis入门程序
作为一个java的学习者,我相信JDBC是大家最早接触也是入门级别的数据库连接方式,所以我们先来回忆一下JDBC作为一种用于执行SQL语句的Java API是如何工作的.下面的一段代码就是最基本的JD ...
- Python内置函数(46)——format
英文文档: format(value[, format_spec]) Convert a value to a "formatted" representation, as con ...
- NoSQL&MongoDB
MongoDB: Is NoSQL(技术的实现,并非是一个特定的技术,与RMDS对立):Not only SQL 大数据问题:BigData,eg:同时访问几个页面,代码实现几个页面访问量的大小? F ...