結果

問題 No.340 雪の足跡
ユーザー 37zigen37zigen
提出日時 2020-04-13 23:01:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,305 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 79,428 KB
実行使用メモリ 99,272 KB
最終ジャッジ日時 2024-09-25 12:00:11
合計ジャッジ時間 30,933 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,112 KB
testcase_01 AC 136 ms
41,368 KB
testcase_02 AC 135 ms
41,100 KB
testcase_03 AC 138 ms
41,680 KB
testcase_04 AC 134 ms
41,688 KB
testcase_05 AC 129 ms
40,984 KB
testcase_06 AC 136 ms
41,416 KB
testcase_07 AC 134 ms
41,540 KB
testcase_08 WA -
testcase_09 AC 118 ms
40,060 KB
testcase_10 AC 136 ms
41,540 KB
testcase_11 AC 205 ms
45,180 KB
testcase_12 AC 199 ms
42,884 KB
testcase_13 AC 216 ms
44,408 KB
testcase_14 AC 414 ms
50,120 KB
testcase_15 AC 523 ms
50,420 KB
testcase_16 AC 436 ms
48,796 KB
testcase_17 AC 562 ms
51,044 KB
testcase_18 AC 524 ms
50,596 KB
testcase_19 AC 535 ms
50,636 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 223 ms
66,692 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 648 ms
48,788 KB
testcase_27 AC 391 ms
49,172 KB
testcase_28 AC 633 ms
49,924 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Queue;
import java.util.Scanner;

public class Main {
	
	void run() {
		Scanner sc=new Scanner(System.in);
		PrintWriter pw=new PrintWriter(System.out);
		int H=sc.nextInt();
		int W=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]=Integer.parseInt(sc.next()); // 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();
    }
}
0