結果
| 問題 | 
                            No.340 雪の足跡
                             | 
                    
| コンテスト | |
| ユーザー | 
                             tenten
                         | 
                    
| 提出日時 | 2020-10-03 14:57:10 | 
| 言語 | Java  (openjdk 23)  | 
                    
| 結果 | 
                             
                                TLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 2,387 bytes | 
| コンパイル時間 | 1,997 ms | 
| コンパイル使用メモリ | 80,160 KB | 
| 実行使用メモリ | 113,708 KB | 
| 最終ジャッジ日時 | 2024-07-18 04:27:01 | 
| 合計ジャッジ時間 | 9,079 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 5 | 
| other | AC * 9 TLE * 2 -- * 21 | 
ソースコード
import java.util.*;
public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int w = sc.nextInt();
		int h = sc.nextInt();
		int n = sc.nextInt();
		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 = sc.nextInt();
		    int prev = sc.nextInt();
		    for (int j = 0; j < m; j++) {
		        int next = sc.nextInt();
		        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;
	    }
	}
}
            
            
            
        
            
tenten