zoukankan      html  css  js  c++  java
  • Poj 1163 The Triangle 之解题报告


    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 42232   Accepted: 25527

    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. 

    Input

    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.

    Output

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

    Sample Input

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

    Sample Output

    30

     

    对于这题若按照常规可能做不出来;但是用递推的思想就可以计算出来啦

    代码:

     

     1 #include<cstdio>
     2 #include<iostream>
     3 #include<algorithm>
     4 #include<cstring>
     5 
     6 using namespace std;
     7 
     8 const int maxn = 100+10;
     9 int vis[maxn][maxn];
    10 int Triangle[maxn][maxn];
    11 
    12 int max(int a,int b)
    13 {
    14     return a>b?a:b;
    15 }
    16 
    17 int main(void)
    18 {
    19     int i,j,n;
    20     while(~scanf("%d",&n))
    21     {
    22          for(i=1;i<=n;++i)
    23              for(j=1;j<=i;++j)
    24                  scanf("%d",&Triangle[i][j]);
    25          memset(vis,0,sizeof(vis));
    26          for(i=1;i<=n;++i)
    27          {
    28              for(j=1;j<=i;++j)
    29              {
    30                   if(i==1) vis[i][j]=Triangle[i][j];
    31                   else if(j==1) vis[i][j] = vis[i-1][j]+Triangle[i][j];
    32                   else if(j==i) vis[i][j] = vis[i-1][j-1]+Triangle[i][j];
    33                   else vis[i][j] = max(vis[i-1][j]+Triangle[i][j],vis[i-1][j-1]+Triangle[i][j]);
    34              }
    35          }
    36          int ans = 0;
    37          for(i=1;i<n;++i)
    38              ans = max(ans,vis[n][i]);
    39          cout<<ans<<endl;
    40     }
    41     
    42     return 0;
    43 }

  • 相关阅读:
    sikiA计划问题记录
    列表+泛型
    查看别人项目找代码的方法
    Unity3d 异常与解决方案集合(持续)
    实现继承+接口继承+虚方法+隐藏方法+this/base+抽象类+密封类/方法+修饰符
    定义类+类实例化+属性+构造函数+匿名类型var+堆与栈+GC回收机制+值类型与引用类型
    局部变量和成员变量的区别
    数组元素二分查找(折半查找)
    数组元素冒泡排序
    数组元素选择排序
  • 原文地址:https://www.cnblogs.com/Bincoder/p/5071898.html
Copyright © 2011-2022 走看看