Lang:Java
Edit12345678910111213141516171819202122232425262728293031import java.util.Scanner;/*** This is the ACM problem solving program for hihoCoder 1290.** @version 2017-05-15* @author Zhang Yufei.*/public class Main {/*** Record the information of each grid.*/private static class Grid {boolean isBlocked;/*** The minimum blocks to remove when move through this grid in right* direction.*/int right;/*** The minimum blocks to remove when move through this grid in down* direction.*/int down;}/*** Input data.*/private static int N, M;