結果

問題 No.340 雪の足跡
ユーザー tentententen
提出日時 2020-12-29 08:00:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 951 ms / 1,000 ms
コード長 2,538 bytes
コンパイル時間 2,128 ms
コンパイル使用メモリ 79,256 KB
実行使用メモリ 73,248 KB
最終ジャッジ日時 2024-10-04 21:51:43
合計ジャッジ時間 17,890 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,408 KB
testcase_01 AC 46 ms
50,008 KB
testcase_02 AC 47 ms
50,432 KB
testcase_03 AC 47 ms
50,596 KB
testcase_04 AC 46 ms
50,196 KB
testcase_05 AC 47 ms
50,020 KB
testcase_06 AC 47 ms
50,356 KB
testcase_07 AC 47 ms
50,300 KB
testcase_08 AC 47 ms
50,476 KB
testcase_09 AC 47 ms
50,448 KB
testcase_10 AC 47 ms
50,524 KB
testcase_11 AC 79 ms
52,000 KB
testcase_12 AC 73 ms
51,648 KB
testcase_13 AC 92 ms
52,008 KB
testcase_14 AC 227 ms
56,468 KB
testcase_15 AC 235 ms
56,532 KB
testcase_16 AC 195 ms
56,388 KB
testcase_17 AC 258 ms
57,428 KB
testcase_18 AC 242 ms
56,692 KB
testcase_19 AC 250 ms
56,832 KB
testcase_20 AC 690 ms
70,884 KB
testcase_21 AC 436 ms
58,684 KB
testcase_22 AC 87 ms
60,516 KB
testcase_23 AC 648 ms
71,280 KB
testcase_24 AC 576 ms
65,244 KB
testcase_25 AC 664 ms
70,228 KB
testcase_26 AC 230 ms
56,628 KB
testcase_27 AC 119 ms
54,304 KB
testcase_28 AC 241 ms
57,456 KB
testcase_29 AC 806 ms
65,316 KB
testcase_30 AC 606 ms
61,964 KB
testcase_31 AC 899 ms
73,248 KB
testcase_32 AC 951 ms
72,004 KB
testcase_33 AC 848 ms
70,820 KB
testcase_34 AC 944 ms
70,888 KB
testcase_35 AC 902 ms
71,064 KB
testcase_36 AC 911 ms
71,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] first = br.readLine().split(" ", 3);
		int w = Integer.parseInt(first[0]);
		int h = Integer.parseInt(first[1]);
		int[] ver = new int[h * w];
		int[] hor = new int[h * w];
		int n = Integer.parseInt(first[2]);
		for (int i = 0; i < n; i++) {
		    int m = Integer.parseInt(br.readLine());
		    String[] line = br.readLine().split(" ", m + 1);
		    int prev = Integer.parseInt(line[0]);
		    for (int j = 0; j < m; j++) {
		        int x = Integer.parseInt(line[j + 1]);
		        int min = Math.min(prev, x);
		        int max = Math.max(prev, x);
		        if (max - min >= w) {
		            ver[min]++;
		            ver[max]--;
		        } else {
		            hor[min]++;
		            hor[max]--;
		        }
		        prev = x;
		    }
		}
		for (int i = 0; i < h; i++) {
		    for (int j = 1; j < w; j++) {
		        hor[i * w + j] += hor[i * w + j - 1];
		    }
		}
		for (int i = 0; i < w; i++) {
		    for (int j = 1; j < h; j++) {
		        ver[j * w + i] += ver[(j - 1) * w + i];
		    }
		}
		PriorityQueue<Path> queue = new PriorityQueue<>();
		queue.add(new Path(0, 0));
		int[] costs = new int[h * w];
		Arrays.fill(costs, Integer.MAX_VALUE);
		while (queue.size() > 0) {
		    Path p = queue.poll();
		    if (costs[p.idx] <= p.value) {
		        continue;
		    }
		    costs[p.idx] = p.value;
		    if (p.idx / w > 0 && ver[p.idx - w] > 0 && costs[p.idx - w] == Integer.MAX_VALUE) {
		        queue.add(new Path(p.idx - w, p.value + 1));
		    }
		    if (ver[p.idx] > 0 && costs[p.idx + w] == Integer.MAX_VALUE) {
		        queue.add(new Path(p.idx + w, p.value + 1));
		    }
		    if (p.idx % w > 0 && hor[p.idx - 1] > 0 && costs[p.idx - 1] == Integer.MAX_VALUE) {
		        queue.add(new Path(p.idx - 1, p.value + 1));
		    }
		    if (hor[p.idx] > 0 && costs[p.idx + 1] == Integer.MAX_VALUE) {
		        queue.add(new Path(p.idx + 1, p.value + 1));
		    }
		}
		if (costs[h * w - 1] == Integer.MAX_VALUE) {
		    System.out.println("Odekakedekinai..");
		} else {
		    System.out.println(costs[h * w - 1]);
		}
	}
	
	static class Path implements Comparable<Path> {
	    int idx;
	    int value;
	    
	    public Path(int idx, int value) {
	        this.idx = idx;
	        this.value = value;
	    }
	    
	    public int compareTo(Path another) {
	        return value - another.value;
	    }
	}
}
0