6581 Number Triangle

6581 Number Triangle

时间限制:500MS  内存限制:1000K
提交次数:57 通过次数:47

题型: 编程题   语言: G++;GCC

 

Description

        7
      3   8
    8   1   0
  2   7   4   4
4   5   2   6   5
   (Figure 1)

Figure 1 shows a number triangle. Write a program that calculates the highest sum of numbers passed on a route that starts at the top and ends somewhere on the base. Each step can go either diagonally down to the left or diagonally down to the right. 


输入格式

Your program is to read from standard input. The first line contains one integer N: the number of rows in the triangle. 
The following N lines describe the data of the triangle. The number of rows in the triangle is &gt; 1 but <= 100. 
The numbers in the triangle, all integers, are between 0 and 99. 



输出格式

Your program is to write to standard output. The highest sum is written as an integer.



 

输入样例

5
7
3 8
8 1 0 
2 7 4 4
4 5 2 6 5



 

输出样例

30



 

作者

 admin

 

  最原始的数塔问题,,经典的动态规划问题。状态转移方程:dp[i][j]=max(dp[i-1][j-1],dp[i-1][j])+a[i][j];

其他细节见代码注释:

复制代码
 1 #include<cstdio>
 2 #include<iostream>
 3 #include<cstring>
 4 #include<cstdlib>
 5 #include<cmath>
 6 #include<cctype>
 7 #include<algorithm>
 8 #include<set>
 9 #include<map>
10 #include<vector>
11 #include<queue>
12 #include<stack>
13 #include<utility>
14 #define ll long long
15 #define inf 0x3f3f3f3f
16 using namespace std;
17 
18 int a[105][105];//a[i][i]为数塔上点[i][i]处输入的值
19 int dp[105][105];//dp[i][j]为走到点[i][j]所能得的最大值
20 int main()
21 {
22     //freopen("input.txt","r",stdin);
23     memset(a,0,sizeof(a));  //初始化数组
24     memset(dp,0,sizeof(dp));
25     int n;
26     scanf("%d",&n);  //输入数据
27     for(int i=1;i<=n;i++) 
28     {
29         for(int j=1;j<=i;j++)
30         {
31             scanf("%d",&a[i][j]);
32         }
33     }
34     //
35     dp[1][1]=a[1][1];
36     if(n==1) //n为1就直接输入塔顶数字
37     {
38         printf("%d\n",dp[1][1]);
39         return 0;
40     }
41     //状态转移方程
42     for(int i=2;i<=n;i++)
43     {
44         for(int j=1;j<=i;j++)
45         { 
46           //走到第a[i][j]位置能得到的最大值dp[i][j]就是等于选择从走到a[i-1][j-1]和走到
47           //a[i-1][j]中值较大的那种走法里再加上a[i][j];
48             dp[i][j]=max(dp[i-1][j-1],dp[i-1][j])+a[i][j];
49         }
50     }
51     //
52     int Max=-1;
53     for(int i=1;i<=n;i++)//扫描塔的最下层,找出最大值
54         if(dp[n][i]>Max)
55             Max=dp[n][i];
56     printf("%d\n",Max);
57     return 0;
58 }
复制代码

 

posted @   爱喝可乐的咖啡  阅读(515)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 分享4款.NET开源、免费、实用的商城系统
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
· 上周热点回顾(2.24-3.2)
点击右上角即可分享
微信分享提示