結果
問題 | No.340 雪の足跡 |
ユーザー | 37zigen |
提出日時 | 2020-04-13 23:16:59 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 545 ms / 1,000 ms |
コード長 | 4,314 bytes |
コンパイル時間 | 2,608 ms |
コンパイル使用メモリ | 78,348 KB |
実行使用メモリ | 78,380 KB |
最終ジャッジ日時 | 2024-10-01 05:16:50 |
合計ジャッジ時間 | 14,111 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
36,760 KB |
testcase_01 | AC | 52 ms
36,888 KB |
testcase_02 | AC | 51 ms
36,832 KB |
testcase_03 | AC | 52 ms
36,632 KB |
testcase_04 | AC | 53 ms
36,888 KB |
testcase_05 | AC | 51 ms
36,404 KB |
testcase_06 | AC | 51 ms
36,368 KB |
testcase_07 | AC | 50 ms
37,032 KB |
testcase_08 | AC | 52 ms
36,760 KB |
testcase_09 | AC | 52 ms
36,364 KB |
testcase_10 | AC | 51 ms
36,804 KB |
testcase_11 | AC | 58 ms
37,188 KB |
testcase_12 | AC | 57 ms
36,916 KB |
testcase_13 | AC | 63 ms
37,508 KB |
testcase_14 | AC | 128 ms
44,932 KB |
testcase_15 | AC | 136 ms
45,448 KB |
testcase_16 | AC | 115 ms
51,248 KB |
testcase_17 | AC | 148 ms
46,476 KB |
testcase_18 | AC | 144 ms
46,520 KB |
testcase_19 | AC | 147 ms
46,488 KB |
testcase_20 | AC | 464 ms
76,076 KB |
testcase_21 | AC | 191 ms
45,876 KB |
testcase_22 | AC | 147 ms
65,476 KB |
testcase_23 | AC | 469 ms
76,772 KB |
testcase_24 | AC | 349 ms
68,440 KB |
testcase_25 | AC | 476 ms
72,068 KB |
testcase_26 | AC | 124 ms
51,084 KB |
testcase_27 | AC | 88 ms
39,204 KB |
testcase_28 | AC | 139 ms
44,744 KB |
testcase_29 | AC | 516 ms
62,036 KB |
testcase_30 | AC | 426 ms
58,400 KB |
testcase_31 | AC | 545 ms
77,120 KB |
testcase_32 | AC | 513 ms
77,604 KB |
testcase_33 | AC | 504 ms
77,580 KB |
testcase_34 | AC | 544 ms
77,268 KB |
testcase_35 | AC | 505 ms
77,300 KB |
testcase_36 | AC | 486 ms
78,380 KB |
ソースコード
import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.ArrayDeque; import java.util.Arrays; import java.util.NoSuchElementException; import java.util.Queue; public class Main { void run() { FastScanner sc=new FastScanner(); PrintWriter pw=new PrintWriter(System.out); int W=sc.nextInt(); int H=sc.nextInt(); int N=sc.nextInt(); int[][][] horizontal=new int[2][H+1][W+1]; int[][][] vertical=new int[2][H+1][W+1]; for (int i=0;i<N;++i) { int M=sc.nextInt(); int[] B=new int[M+1]; for (int j=0;j<M+1;++j) { B[j]=sc.nextInt(); // w+hW } for (int j=0;j<M;++j) { int src=B[j]; int dst=B[j+1]; int hs=src/W; int ws=src%W; int hd=dst/W; int wd=dst%W; if (hs==hd) { if (ws<wd) { ++horizontal[1][hs][ws]; --horizontal[1][hd][wd]; } else { --horizontal[0][hs][ws+1]; ++horizontal[0][hd][wd+1]; } } else { if (hs<hd) { ++vertical[1][hs][ws]; --vertical[1][hd][wd]; } else { --vertical[0][hs+1][ws]; ++vertical[0][hd+1][wd]; } } } } for (int k=0;k<2;++k) { for (int i=0;i<=H;++i) { for (int j=0;j<=W;++j) { if (j+1<=W) horizontal[k][i][j+1]+=horizontal[k][i][j]; if (i+1<=H) vertical[k][i+1][j]+=vertical[k][i][j]; } } } int[][] dist=new int[H][W]; int INF=Integer.MAX_VALUE/3; for (int i=0;i<H;++i) for (int j=0;j<W;++j) dist[i][j]=INF; dist[0][0]=0; Queue<Integer> que=new ArrayDeque<Integer>(); que.add(0); while (!que.isEmpty()) { int p=que.poll(); int h=p/W; int w=p%W; if (dist[h][w]==INF) continue; int[] dh= {-1,1,0,0}; int[] dw= {0,0,-1,1}; for (int k=0;k<4;++k) { int nh=h+dh[k]; int nw=w+dw[k]; if (nh<0||nw<0||nh>=H||nw>=W) continue; if (dist[nh][nw]<=dist[h][w]+1) continue; if ((dw[k]!=0&&(horizontal[(dw[k]+1)/2][h][w]>0||horizontal[((dw[k]+1)/2)^1][h][w+dw[k]]>0))||(dh[k]!=0&&(vertical[(dh[k]+1)/2][h][w]>0||vertical[((dh[k]+1)/2)^1][h+dh[k]][w]>0))) { dist[nh][nw]=dist[h][w]+1; que.add(nw+nh*W); } } } pw.println(dist[H-1][W-1]==INF?"Odekakedekinai..":dist[H-1][W-1]); pw.close(); } void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));} public static void main(String[] args) { new Main().run(); } } class FastScanner { private final InputStream in = System.in; private final byte[] buffer = new byte[1024]; private int ptr = 0; private int buflen = 0; private boolean hasNextByte() { if (ptr < buflen) { return true; }else{ ptr = 0; try { buflen = in.read(buffer); } catch (IOException e) { e.printStackTrace(); } if (buflen <= 0) { return false; } } return true; } private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;} private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;} private void skipUnprintable() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;} public boolean hasNext() { skipUnprintable(); return hasNextByte();} public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while(isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); long n = 0; boolean minus = false; int b = readByte(); if (b == '-') { minus = true; b = readByte(); } if (b < '0' || '9' < b) { throw new NumberFormatException(); } while(true){ if ('0' <= b && b <= '9') { n *= 10; n += b - '0'; }else if(b == -1 || !isPrintableChar(b)){ return minus ? -n : n; }else{ throw new NumberFormatException(); } b = readByte(); } } public int nextInt() { return (int)nextLong(); } }