Advertisement
GeeckoDev

pe18 in-place

Aug 22nd, 2011
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.71 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int tri[15][15] =
  5. {
  6.   {75},
  7.   {95,64},
  8.   {17,47,82},
  9.   {18,35,87,10},
  10.   {20, 4,82,47,65},
  11.   {19, 1,23,75, 3,34},
  12.   {88, 2,77,73, 7,63,67},
  13.   {99,65, 4,28, 6,16,70,92},
  14.   {41,41,26,56,83,40,80,70,33},
  15.   {41,48,72,33,47,32,37,16,94,29},
  16.   {53,71,44,65,25,43,91,52,97,51,14},
  17.   {70,11,33,28,77,73,17,78,39,68,17,57},
  18.   {91,71,52,38,17,14,91,43,58,50,27,29,48},
  19.   {63,66, 4,68,89,53,67,30,73,16,69,87,40,31},
  20.   { 4,62,98,27,23, 9,70,98,73,93,38,53,60, 4,23}
  21. };
  22.  
  23. int main()
  24. {
  25.   int i, j;
  26.  
  27.   for (i=13; i>=0; i--)
  28.     for (j=0; j<=i; j++)
  29.       tri[i][j] += (tri[i+1][j] > tri[i+1][j+1] ? tri[i+1][j] : tri[i+1][j+1]);
  30.  
  31.   printf("%d\n",**tri);
  32.   return 0;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement