結果

問題 No.340 雪の足跡
ユーザー tentententen
提出日時 2020-10-03 15:01:36
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,653 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 75,236 KB
実行使用メモリ 103,544 KB
最終ジャッジ日時 2023-09-25 05:14:42
合計ジャッジ時間 8,453 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,548 KB
testcase_01 AC 45 ms
49,452 KB
testcase_02 AC 46 ms
49,612 KB
testcase_03 AC 44 ms
49,564 KB
testcase_04 AC 44 ms
49,548 KB
testcase_05 AC 43 ms
51,612 KB
testcase_06 AC 44 ms
49,616 KB
testcase_07 AC 45 ms
49,460 KB
testcase_08 AC 44 ms
47,644 KB
testcase_09 AC 45 ms
49,532 KB
testcase_10 AC 44 ms
49,536 KB
testcase_11 AC 129 ms
56,240 KB
testcase_12 AC 131 ms
56,080 KB
testcase_13 AC 164 ms
57,480 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

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 n = Integer.parseInt(first[2]);
		int size = w * h;
		ArrayList<HashSet<Integer>> graph = new ArrayList<>();
		for (int i = 0; i < size; i++) {
		    graph.add(new HashSet<>());
		}
		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 next = Integer.parseInt(line[j + 1]);
		        if (prev / w == next / w) {
		            if (prev < next) {
		                while (prev < next) {
		                    graph.get(prev).add(prev + 1);
		                    graph.get(prev + 1).add(prev);
		                    prev++;
		                }
		            } else {
		                while (prev > next) {
		                    graph.get(prev).add(prev - 1);
		                    graph.get(prev - 1).add(prev);
		                    prev--;
		                }
		            }
		        } else {
		            if (prev < next) {
		                while (prev < next) {
		                    graph.get(prev).add(prev + w);
		                    graph.get(prev + w).add(prev);
		                    prev += w;
		                }
		            } else {
		                while (prev > next) {
		                    graph.get(prev).add(prev - w);
		                    graph.get(prev - w).add(prev);
		                    prev -= w;
		                }
		            }
		        }
		        prev = next;
		    }
		}
		PriorityQueue<Path> queue = new PriorityQueue<>();
		queue.add(new Path(0, 0));
		int[] costs = new int[size];
		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;
		    for (int x : graph.get(p.idx)) {
		        queue.add(new Path(x, p.value + 1));
		    }
		}
		if (costs[size - 1] == Integer.MAX_VALUE) {
		    System.out.println("Odekakedekinai..");
		} else {
		    System.out.println(costs[size - 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