結果

問題 No.2565 はじめてのおつかい
ユーザー viral8viral8
提出日時 2023-12-02 15:38:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 772 ms / 2,000 ms
コード長 1,335 bytes
コンパイル時間 2,667 ms
コンパイル使用メモリ 81,928 KB
実行使用メモリ 62,880 KB
最終ジャッジ日時 2024-09-26 19:04:33
合計ジャッジ時間 24,758 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
37,444 KB
testcase_01 AC 73 ms
37,772 KB
testcase_02 AC 78 ms
37,360 KB
testcase_03 AC 772 ms
62,880 KB
testcase_04 AC 484 ms
61,708 KB
testcase_05 AC 62 ms
36,972 KB
testcase_06 AC 464 ms
50,888 KB
testcase_07 AC 329 ms
48,140 KB
testcase_08 AC 344 ms
48,532 KB
testcase_09 AC 429 ms
49,796 KB
testcase_10 AC 383 ms
49,252 KB
testcase_11 AC 635 ms
54,456 KB
testcase_12 AC 266 ms
47,508 KB
testcase_13 AC 382 ms
49,204 KB
testcase_14 AC 503 ms
51,028 KB
testcase_15 AC 538 ms
50,960 KB
testcase_16 AC 383 ms
53,432 KB
testcase_17 AC 197 ms
44,680 KB
testcase_18 AC 199 ms
46,552 KB
testcase_19 AC 524 ms
53,520 KB
testcase_20 AC 480 ms
52,168 KB
testcase_21 AC 436 ms
52,492 KB
testcase_22 AC 267 ms
48,492 KB
testcase_23 AC 371 ms
50,240 KB
testcase_24 AC 179 ms
44,156 KB
testcase_25 AC 493 ms
52,668 KB
testcase_26 AC 367 ms
49,656 KB
testcase_27 AC 354 ms
51,664 KB
testcase_28 AC 453 ms
52,664 KB
testcase_29 AC 553 ms
55,392 KB
testcase_30 AC 357 ms
52,852 KB
testcase_31 AC 485 ms
52,840 KB
testcase_32 AC 268 ms
48,364 KB
testcase_33 AC 324 ms
51,840 KB
testcase_34 AC 492 ms
52,256 KB
testcase_35 AC 366 ms
52,544 KB
testcase_36 AC 464 ms
52,936 KB
testcase_37 AC 357 ms
49,848 KB
testcase_38 AC 367 ms
50,624 KB
testcase_39 AC 501 ms
50,852 KB
testcase_40 AC 395 ms
53,152 KB
testcase_41 AC 490 ms
55,384 KB
testcase_42 AC 385 ms
49,380 KB
testcase_43 AC 329 ms
50,756 KB
testcase_44 AC 321 ms
48,604 KB
testcase_45 AC 203 ms
45,308 KB
testcase_46 AC 543 ms
50,720 KB
testcase_47 AC 393 ms
49,220 KB
testcase_48 AC 385 ms
49,468 KB
testcase_49 AC 269 ms
48,000 KB
testcase_50 AC 432 ms
49,488 KB
testcase_51 AC 67 ms
37,592 KB
testcase_52 AC 350 ms
47,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
class Main{
	private static final BufferedReader br =
		new BufferedReader(new InputStreamReader(System.in));
	private static final PrintWriter out =
		new PrintWriter(System.out);
	public static void main(String[] args)throws IOException{

		String[] str = br.readLine().split(" ");
		int N = Integer.parseInt(str[0]);
		int M = Integer.parseInt(str[1]);
		ArrayList<ArrayList<Integer>> list = new ArrayList<>();
		for(int i=0;i<=N;i++)
			list.add(new ArrayList<>());
		while(M-->0){
			str = br.readLine().split(" ");
			int u = Integer.parseInt(str[0]);
			int v = Integer.parseInt(str[1]);
			list.get(u).add(v);
		}
		PriorityQueue<int[]> queue = new PriorityQueue<>((a,b)->Integer.compare(a[1],b[1]));
		int[] dist = new int[4*N+1];
		Arrays.fill(dist,Integer.MAX_VALUE);
		dist[1] = 0;
		queue.add(new int[]{1,0,0});
		while(queue.size()>0){
			int[] now = queue.poll();
			if(dist[now[0]+now[2]*N]<now[1])
				continue;
			for(int next:list.get(now[0])){
				int nextP = next==N-1?now[2]|1:next==N?now[2]|2:now[2];
				if(dist[now[0]+now[2]*N]+1<dist[next+nextP*N]){
					dist[next+nextP*N] = dist[now[0]+now[2]*N]+1;
					queue.add(new int[]{next,dist[next+nextP*N],nextP});
				}
			}
		}
		out.println(dist[3*N+1]==Integer.MAX_VALUE?-1:dist[3*N+1]);

		br.close();
		out.close();
	}
}
0