博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NYOJ The Triangle
阅读量:6578 次
发布时间:2019-06-24

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

                                                                                        The Triangle

                                                                                                                       时间限制:
1000 ms  |  内存限制:
65535 KB
                                                                                                                                                           难度:
4
描述

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 > 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.
样例输入
573 88 1 0 2 7 4 44 5 2 6 5
样例输出
30
#include 
using namespace std;const int N = 105;int a[N][N];int main(){ int i,j,n; cin>>n; for(i=0;i
>a[i][j];} for(i=n-2;i>=0;i--){ for(j=0;j<=i;j++) a[i][j]+=max(a[i+1][j],a[i+1][j+1]); } cout<
<

 

转载于:https://www.cnblogs.com/zhangmingzhao/p/7256451.html

你可能感兴趣的文章
UVM中的class--2
查看>>
ORACLE 存储过程异常捕获并抛出
查看>>
root用户重置其他密码
查看>>
Oracle推断值为非数字
查看>>
多年前写的一个ASP.NET网站管理系统,到现在有些公司在用
查看>>
vue-cli中理不清的assetsSubDirectory 和 assetsPublicPath
查看>>
从JDK源码角度看Short
查看>>
五年 Web 开发者 star 的 github 整理说明
查看>>
Docker 部署 SpringBoot 项目整合 Redis 镜像做访问计数Demo
查看>>
中台之上(五):业务架构和中台的难点,都是需要反复锤炼出标准模型
查看>>
使用模板将Web服务的结果转换为标记语言
查看>>
inno setup 打包脚本学习
查看>>
php 并发控制中的独占锁
查看>>
React Native 0.20官方入门教程
查看>>
JSON for Modern C++ 3.6.0 发布
查看>>
Tomcat9.0部署iot.war(环境mysql8.0,centos7.2)
查看>>
我的友情链接
查看>>
监听在微信中打开页面时的自带返回按钮事件
查看>>
第一个php页面
查看>>
世界各国EMC认证大全
查看>>