标签:
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.
5 7 3 8 8 1 0 2 7 4 4 4 5 2 6 5
1 #include <stdio.h> 2 #include<string.h> 3 int max(int a, int b){ 4 return (a>b)?a:b; 5 } 6 7 int main() 8 { 9 int n; 10 int arr[100][100]; 11 int sumdpth[100][100]; 12 scanf("%d", &n); 13 int tmpmax = 0; 14 for (int i = 0; i < n; ++i) { 15 for (int j = 0; j < i+1; ++j) { 16 arr[i][j] = sumdpth[i][j] = 0; 17 scanf("%d", &arr[i][j]); 18 sumdpth[i][j] = arr[i][j]; 19 } 20 } 21 22 for (int i = 1; i < n; ++i) { 23 for (int j = 0; j < i+1; ++j) { 24 if(j == 0){ 25 sumdpth[i][j] = arr[i-1][j]; 26 } 27 sumdpth[i][j] = max(sumdpth[i-1][j]+arr[i][j],sumdpth[i-1][j-1]+arr[i][j]) ; 28 if(tmpmax < sumdpth[i][j]) tmpmax = sumdpth[i][j]; 29 } 30 } 31 32 printf("%d\n", tmpmax); 33 /* 34 for (int i = 0; i < n; ++i) { 35 for (int j = 0; j < i+1; ++j) { 36 printf("%d ", arr[i][j]); 37 } 38 printf("\n"); 39 } 40 */ 41 42 }
标签:
原文地址:http://www.cnblogs.com/guxuanqing/p/5883238.html