hiho week 150 register

Ended

Participants:305

Verdict:Runtime Error
Score:0 / 100
Submitted:2017-05-19 10:31:37

Lang:Java

Edit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import java.util.Scanner;
import java.io.IOException;
class Main{
    static int  MAX(int a,int b){
        return (a>b)?a:b;
    }
    static int min(int a,int b){
        return a>b?b:a;
    }
     static class Path{
            
            int N,M;
            char path[][];
            
            //int min[][];
            int minR[][];
            int minD[][];
            
            void todo() throws IOException{
                Scanner sc = new Scanner(System.in);
                N = sc.nextInt();
                M = sc.nextInt();
                path = new char [N+2][M+2];
                //min = new int[M+1][N+1];
                minR = new int[N+1][M+1];
                minD = new int[N+1][M+1];
                
                for(int i = 0i <= N+1i++ ){
                    if(i!=0&&i!=N+1){
                         String str = sc.next();
                         path[i][0= 'b';
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX