結果
問題 | No.659 徘徊迷路 |
ユーザー | tetsu |
提出日時 | 2018-03-03 17:02:13 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 173 ms / 2,000 ms |
コード長 | 2,945 bytes |
コンパイル時間 | 3,670 ms |
コンパイル使用メモリ | 78,216 KB |
実行使用メモリ | 54,776 KB |
最終ジャッジ日時 | 2024-06-30 04:44:01 |
合計ジャッジ時間 | 6,268 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 60 ms
50,336 KB |
testcase_01 | AC | 111 ms
52,320 KB |
testcase_02 | AC | 59 ms
50,216 KB |
testcase_03 | AC | 54 ms
50,220 KB |
testcase_04 | AC | 117 ms
52,168 KB |
testcase_05 | AC | 64 ms
50,724 KB |
testcase_06 | AC | 65 ms
50,432 KB |
testcase_07 | AC | 57 ms
50,244 KB |
testcase_08 | AC | 132 ms
52,220 KB |
testcase_09 | AC | 152 ms
54,312 KB |
testcase_10 | AC | 170 ms
54,592 KB |
testcase_11 | AC | 158 ms
54,460 KB |
testcase_12 | AC | 106 ms
51,908 KB |
testcase_13 | AC | 153 ms
54,240 KB |
testcase_14 | AC | 164 ms
54,284 KB |
testcase_15 | AC | 163 ms
54,704 KB |
testcase_16 | AC | 173 ms
54,776 KB |
ソースコード
package yukicoder; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.StringTokenizer; public class P659 { static double [][] pow(double[][] A, long n) { if(n==1) { return A; } if(n%2==0) { double[][] B = pow(A, n/2); return mul(B, B); } else { double[][] B = mul(A, pow(A, n-1)); return B; } } static double[][] mul(double [][] A, double [][] B) { assert A[0].length == B.length; int n = A.length; int k = A[0].length; int m = B[0].length; double[][] C = new double[n][m]; for(int i=0; i<n; i++) { for(int j=0; j<m; j++) { for(int l=0; l<k; l++) { C[i][j] = (C[i][j] + A[i][l]*B[l][j]); } } } return C; } static int[][] ds = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}}; public static void main(String[] args) throws IOException { MyScanner sc = new MyScanner(System.in); int r = sc.nextInt(); int c = sc.nextInt(); int t = sc.nextInt(); int sy = sc.nextInt(); int sx = sc.nextInt(); int gy = sc.nextInt(); int gx = sc.nextInt(); char[][] map = new char[r][c]; for(int i=0; i<r; i++) { String s = sc.next(); for(int j=0; j<c; j++) map[i][j] = s.charAt(j); } { int cnt = 0; for(int k=0; k<4; k++) { int ny = sy+ds[k][0]; int nx = sx+ds[k][1]; if(0<=ny && ny < r && 0<=nx && nx < c && map[ny][nx]=='.') cnt++; } if(cnt==0 && gx == sx && gy == sy) { System.out.println(1); return; } if(cnt==0) { System.out.println(0); return; } } double[][] A = new double[r*c][r*c]; for(int y=0; y<r; y++) { for(int x=0; x<c; x++) { int cnt = 0; for(int k=0; k<4; k++) { int ny = y+ds[k][0]; int nx = x+ds[k][1]; if(0<=ny && ny < r && 0<=nx && nx < c && map[ny][nx]=='.') cnt++; } int here = c*y+x; if(cnt==0) { A[here][here] = 1; continue; } for(int k=0; k<4; k++) { int ny = y+ds[k][0]; int nx = x+ds[k][1]; int next = c*ny+nx; if(0<=ny && ny < r && 0<=nx && nx < c && map[ny][nx]=='.') A[here][next] = (double)1/(double)cnt; } } } System.out.println(pow(A, t)[sy*c+sx][gy*c+gx]); } static class MyScanner { BufferedReader br; StringTokenizer st; public MyScanner(InputStream s) { br=new BufferedReader(new InputStreamReader(s)); } public String nextLine() throws IOException { return br.readLine(); } public String next() throws IOException { while(st==null || !st.hasMoreTokens()) st=new StringTokenizer(br.readLine()); return st.nextToken(); } public int nextInt() throws IOException { return Integer.parseInt(next()); } public double nextDouble() throws IOException { return Double.parseDouble(next()); } public boolean ready() throws IOException { return br.ready(); } public long nextLong() throws IOException { return Long.parseLong(next()); } } }