import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class ZahradkarskaUloha {
public static int zahradka(int[][] zahrada, List<Character> cesta) {
int vyska = zahrada.length, sirka = zahrada[0].length;
int[][] pole = new int[vyska + 1][sirka + 1];
for (int x = 1; x < vyska + 1; x++) {
for (int y = 1; y < sirka + 1; y++) {
// pole[x][y] = zahrada[x - 1][y - 1];
pole[x][y] = zahrada[x - 1][y - 1] + Math.max(pole[x - 1][y], pole[x][y - 1]);
}
}
if (cesta == null)
return pole[vyska][sirka];
// cesta.clear();
int y = vyska, x = sirka;
while (!(y == 1 && x == 1)) {
if (pole[y - 1][x] > pole[y][x - 1]) {
cesta.add('D');
y--;
} else {
cesta.add('P');
x--;
}
}
Collections.reverse(cesta);
return pole[vyska][sirka];
}
// public static int zahradka(int[][] zahrada, List<Character> cesta) {
//
// }
public static void main(String[] args) {
// System.out.println(jeZaplatitelna(250, new int[] { 100, 100, 200, 10,
// 10, 10, 500, 5, 5 }));
int[][] zahrada = new int[][] { { 3, 1, 4, 3, 1, 2 },
{ 4, 1, 2, 3, 4, 1 },
{ 8, 4, 2, 3, 4, 2},
{ 1, 2, 3, 8, 9, 1},
/* { 5, 6, 8, 6, 8 }, */
};
List<Character> cesta = new ArrayList<Character>();
System.out.println(zahradka(zahrada, cesta));
System.out.println(cesta);
}
}