0_0_20542613_1375.cpp: In function 'int main()':
0_0_20542613_1375.cpp:22:21: error: cannot resolve overloaded function 'max' based on conversion to type 'int'
state[x][y][0] = max{ state[x - 1][y][0],state[x][y - 1][0], state[x][y - 1][1] } +value[x][y];
^
0_0_20542613_1375.cpp:23:21: error: cannot resolve overloaded function 'max' based on conversion to type 'int'
state[x][y][1] = max{ state[x + 1][y][1], state[x][y - 1][0], state[x][y - 1][1] } +value[x][y];
^
|