1. 程式人生 > >藍橋杯 演算法訓練 數字三角形

藍橋杯 演算法訓練 數字三角形

問題描述  (圖3.1-1)示出了一個數字三角形。 請編一個程式計算從頂至底的某處的一條路
  徑,使該路徑所經過的數字的總和最大。
  ●每一步可沿左斜線向下或右斜線向下走;
  ●1<三角形行數≤100;
  ●三角形中的數字為整數0,1,…99;


  .
  (圖3.1-1)
輸入格式  檔案中首先讀到的是三角形的行數。

  接下來描述整個三角形
輸出格式  最大總和(整數)樣例輸入5
7
3 8
8 1 0
2 7 4 4
4 5 2 6 5
樣例輸出30

<span style="font-size:14px;">import java.util.Scanner;

public class Main{
	public static int[][] m;
	public static int n;
	/*剛開始用遞迴寫,超時了,後來改成迴圈,動態規劃寫通過了。
	private static int solve(int x,int y){
		if(x==n-1){
			return m[x][y];
		}else{
			return m[x][y]+Math.max(solve(x+1,y), solve(x+1,y+1));		
		}
	}
	*/
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		n = sc.nextInt();
		m = new int[n][n];
		for(int i=0;i<n;i++){
			for(int j=0;j<=i;j++){
				m[i][j]=sc.nextInt();
			}
		}
		for(int i=n-1;i>=1;i--){
			for(int j=0;j<i;j++){
				m[i-1][j]+=Math.max(m[i][j], m[i][j+1]);
			}
		}
		System.out.println(m[0][0]);
	//	System.out.println(solve(0,0));
	}
}</span>

關注公眾號,分享乾貨,討論技術