• 算法训练 数字三角形



    import java.io.BufferedInputStream;
    import java.util.Scanner;
    
    public class Main {
        public static int[][] a = new int[100][100];
        public static int[][] F = new int[100][100];
        public static int n;
    
        public static int dp(int i, int j) {
            if (F[i][j] != 0) // F[i][j]存放从底端到到该点和的最大值
                return F[i][j];
            if (i == n - 1) // 如果到达最底端,说明走完了一条路
                F[i][j] = a[i][j];
            else // 要么从数组往下,对应原图左下,要么从数组往右下,对应原图的右下方
                F[i][j] = a[i][j] + Math.max(dp(i + 1, j + 1), dp(i + 1, j));
            return F[i][j];
        }
    
        public static void main(String[] args) {
            Scanner cin = new Scanner(new BufferedInputStream(System.in));
            n = cin.nextInt();
            for (int i = 0; i < n; ++i) {
                for (int j = 0; j <= i; ++j) {
                    a[i][j] = cin.nextInt();
                }
            }
            cin.close();
            System.out.println(dp(0, 0));
        }
    }

    类似贪心加动态规划的见我另一篇博客,其实就是百度之星的那题点击打开链接

    ========================================Talk is cheap, show me the code=======================================


    CSDN博客地址:https://blog.csdn.net/qq_34115899
  • 相关阅读:
    博客阅读计数优化
    博客阅读简单计数
    博客后台富文本编辑
    博客分类统计
    Django关联关系查询
    上下篇博客,按月归档
    浅谈闭包以及常见面试题
    浅谈前端缓存(转至大佬)
    post请求头的常见类型
    浅谈RegExp 对象的方法
  • 原文地址:https://www.cnblogs.com/lcy0515/p/9179801.html
Copyright © 2020-2023  润新知