博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(动态规划)matrix -- hdu -- 5569
阅读量:5078 次
发布时间:2019-06-12

本文共 1602 字,大约阅读时间需要 5 分钟。

 

matrix

Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)

Total Submission(s): 325    Accepted Submission(s): 196

Problem Description
Given a matrix with n rows and m columns ( n+m is an odd number ), at first , you begin with the number at top-left corner (1,1) and you want to go to the number at bottom-right corner (n,m). And you must go right or go down every steps. Let the numbers you go through become an array a1,a2,...,a2k. The cost is a1a2+a3a4+...+a2k1a2k. What is the minimum of the cost?
 

 

Input
Several test cases(about 5)
For each cases, first come 2 integers, n,m(1n1000,1m1000)
N+m is an odd number.
Then follows n lines with m numbers ai,j(1ai100)
 

 

Output
For each cases, please output an integer in a line as the answer.
 

 

Sample Input
2 3
1 2 3
2 2 1
2 3
2 2 1
1 2 4
 

 

Sample Output
4
8
 

 

Source

 

 写完这题, 我意识到了动态规划最重要的便是状态转移, 虽然以前听别人说, 但是到底没有自己真正体会到的来的贴切

 

 

#include
#include
#include
#include
#include
#include
using namespace std;const int N = 1100;int a[N][N], dp[N][N];int main(){ int n, m, i, j; while(scanf("%d%d", &n, &m)!=EOF) { for(i=1; i<=n; i++) for(j=1; j<=m; j++) scanf("%d", &a[i][j]); memset(dp, 0x3f3f3f3f, sizeof(dp)); for(i=1; i<=n; i++) for(j=1; j<=m; j++) { if(i==1 && j==1) dp[i][j] = 0; else if((i+j)&1) { dp[i][j] = min(dp[i-1][j]+a[i-1][j]*a[i][j], dp[i][j-1]+a[i][j-1]*a[i][j]); } else dp[i][j] = min(dp[i-1][j], dp[i][j-1]); } printf("%d\n", dp[n][m]); } return 0;}

 

转载于:https://www.cnblogs.com/YY56/p/4988538.html

你可能感兴趣的文章
IOS--沙盒机制
查看>>
使用 JointCode.Shuttle 访问任意 AppDomain 的服务
查看>>
sqlite的坑
查看>>
digitalocean --- How To Install Apache Tomcat 8 on Ubuntu 16.04
查看>>
【题解】[P4178 Tree]
查看>>
Jquery ui widget开发
查看>>
关于indexOf的使用
查看>>
英语单词
查看>>
Mongo自动备份
查看>>
cer证书签名验证
查看>>
新手Python第一天(接触)
查看>>
【bzoj1029】[JSOI2007]建筑抢修
查看>>
synchronized
查看>>
codevs 1080 线段树练习
查看>>
[No0000195]NoSQL还是SQL?这一篇讲清楚
查看>>
【深度学习】caffe 中的一些参数介绍
查看>>
Python-Web框架的本质
查看>>
QML学习笔记之一
查看>>
Window 的引导过程
查看>>
App右上角数字
查看>>