Advertisement
Guest User

Problem18

a guest
Aug 29th, 2015
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.18 KB | None | 0 0
  1. public class Problem18
  2. {
  3.     private final static int[][] triangle = {
  4.         {75},
  5.         {95, 64},
  6.         {17, 47, 82},
  7.         {18, 35, 87, 10},
  8.         {20, 4,  82, 47, 65},
  9.         {19, 1,  23, 75, 3,  34},
  10.         {88, 2,  77, 73, 7,  63, 67},
  11.         {99, 65, 4,  28, 6,  16, 70, 92},
  12.         {41, 41, 26, 56, 83, 40, 80, 70, 33},
  13.         {41, 48, 72, 33, 47, 32, 37, 16, 94, 29},
  14.         {53, 71, 44, 65, 25, 43, 91, 52, 97, 51, 14},
  15.         {70, 11, 33, 28, 77, 73, 17, 78, 39, 68, 17, 57},
  16.         {91, 71, 52, 38, 17, 14, 91, 43, 58, 50, 27, 29, 48},
  17.         {63, 66, 4,  68, 89, 53, 67, 30, 73, 16, 69, 87, 40, 31},
  18.         {4,  62, 98, 27, 23, 9,  70, 98, 73, 93, 38, 53, 60, 4,  23}
  19.     };
  20.    
  21.     public static void main(String[] args)
  22.     {
  23.         System.out.println("Valore previsto: 1074");
  24.        
  25.         for (int row = triangle.length-2; row >= 0; row--) {
  26.             for (int col = 0, length = triangle[row].length; col < length; col++) {
  27.                 triangle[row][col] += Math.max(triangle[row + 1][col], triangle[row + 1][col + 1]);
  28.             }
  29.         }
  30.        
  31.         System.out.println("Valore calcolato: " + triangle[0][0]);
  32.     }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement