NOIP 1118 数字三角形(dfs剪枝 杨辉三角)

题目描述

FJ and his cows enjoy playing a mental game. They write down the numbers from 11 to N(1 \le N \le 10)N(1N10) in a certain order and then sum adjacent numbers to produce a new list with one fewer number. They repeat this until only a single number is left. For example, one instance of the game (when N=4N=4 ) might go like this:

    3   1   2   4
      4   3   6
        7   9
         16

Behind FJ's back, the cows have started playing a more difficult game, in which they try to determine the starting sequence from only the final total and the number NN . Unfortunately, the game is a bit above FJ's mental arithmetic capabilities.

Write a program to help FJ play the game and keep up with the cows.

有这么一个游戏:

写出一个 1

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
数字三角形是一个经典的动态规划问题。 题目描述: 给定一个数字三角形,从顶部出发,每次只能向下走相邻的两个数,求出从顶部到底部所有路径中数字总和最大的一条路径。 例如,给定下面的数字三角形: ``` 7 3 8 8 1 0 2 7 4 4 4 5 2 6 5 ``` 则从顶部到底部数字总和最大的路径是 7 -> 3 -> 8 -> 7 -> 5,总和为 30。 思路: 我们可以使用动态规划来解决这个问题。 设 $dp_{i,j}$ 表示从顶部到位置 $(i,j)$ 的所有路径中数字总和最大的一条路径的数字总和。则有: $$dp_{i,j}=\max(dp_{i-1,j-1},dp_{i-1,j})+a_{i,j}$$ 其中,$a_{i,j}$ 表示数字三角形中位置 $(i,j)$ 的数字。 边界条件为 $dp_{1,1}=a_{1,1}$。 最终的答案为 $\max(dp_{n,j})$,其中 $n$ 表示数字三角形的行数。 代码实现: 使用二维数组实现: ```cpp #include <iostream> #include <algorithm> using namespace std; const int N = 510; int a[N][N]; int dp[N][N]; int main() { int n; cin >> n; for(int i = 1; i <= n; i++) for(int j = 1; j <= i; j++) cin >> a[i][j]; dp[1][1] = a[1][1]; for(int i = 2; i <= n; i++) for(int j = 1; j <= i; j++) dp[i][j] = max(dp[i-1][j-1], dp[i-1][j]) + a[i][j]; int res = 0; for(int j = 1; j <= n; j++) res = max(res, dp[n][j]); cout << res << endl; return 0; } ``` 使用一维数组实现: ```cpp #include <iostream> #include <algorithm> using namespace std; const int N = 510; int a[N][N]; int dp[N]; int main() { int n; cin >> n; for(int i = 1; i <= n; i++) for(int j = 1; j <= i; j++) cin >> a[i][j]; dp[1] = a[1][1]; for(int i = 2; i <= n; i++) for(int j = i; j >= 1; j--) dp[j] = max(dp[j-1], dp[j]) + a[i][j]; int res = 0; for(int j = 1; j <= n; j++) res = max(res, dp[j]); cout << res << endl; return 0; } ``` 注意,使用一维数组实现时,需要将第二层循环倒序遍历,否则会出现重叠子问题。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值