#include <math.h> #include <stdio.h> int fDP(int a[102][102], int b[102][102], int c, int d, int o) { int i = 0; if ((a[c - 1][d] < a[c][d]) && (a[c - 1][d] != -1) && (b[c - 1][d] == 0)) { b[c - 1][d] = 1; i = fDP(a, b, c - 1, d, o + 1); b[c - 1][d] = 0; } if ((a[c ][d...