two simple problems solved by dynamic programming

Hello,everyone.I said i will spend three days to learn the dynamic programming.And today is the first day.I will show two simple problems solved by dynamic programming.And there is on doubt that if you want  to understand and use it well,you have to practice again and again.

Have fun coding,i_human.Have fun coding,everyone!


THE CODE:


// 数字三角问题.cpp : 定义控制台应用程序的入口点。
//


#include "stdafx.h"
#include<iostream>
#define a1 100


using namespace std;


int find(int a,int b);


int c[a1][a1];
int d[a1][a1];
int n;


int main()
{
cin>>n;
for(int i=0;i<a1;i++)
for(int j=0;j<a1;j++)
d[i][j]=-1;
for(int i=0;i<n;i++)
for(int j=0;j<=i;j++)
cin>>c[i][j];
cout<<find(0,0);
system("pause");
return 0;
}


int find(int a,int b)
{
if(d[a][b]!=-1)
return d[a][b];
if(a==n-1)
{
d[a][b]=c[a][b];
return d[a][b];
}
if(find(a+1,b)>find(a+1,b+1))
{
d[a][b]=c[a][b]+d[a+1][b];
return d[a][b];
}
if(find(a+1,b)<=find(a+1,b+1))
{
d[a][b]=d[a+1][b+1]+c[a][b];
return d[a][b];
}
}


// 矩阵连乘问题.cpp : 定义控制台应用程序的入口点。
//


#include "stdafx.h"
#include<iostream>
#define a1 100


using namespace std;


int c[2][a1];
int f[a1][a1];


int cal(int a,int b);


int main()
{
int n;
cin>>n;
for(int j=0;j<a1;j++)
for(int k=0;k<a1;k++)
f[j][k]=-1;
for(int i=1;i<=n;i++)
cin>>c[0][i]>>c[1][i];
cout<<cal(1,n)<<endl;
system("pause");
return 0;
}


int cal(int a,int b)
{
int d=1000000;
int e;
if(f[a][b]!=-1)
return f[a][b];
if(a==b)
return 0;
if(b>a)
{
for(int l=a;l<b;l++)
{
e=cal(a,l)+cal(l+1,b)+c[0][a]*c[1][l]*c[1][b];
if(e<=d)
d=e;
}
f[a][b]=d;
return d;
}
if(b<a)
{
cout<<"error"<<endl;
return 0;
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值