結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー ks2mks2m
提出日時 2021-06-11 23:03:29
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,787 bytes
コンパイル時間 2,924 ms
コンパイル使用メモリ 80,400 KB
実行使用メモリ 529,860 KB
最終ジャッジ日時 2024-05-08 19:16:22
合計ジャッジ時間 11,743 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
42,292 KB
testcase_01 AC 55 ms
36,928 KB
testcase_02 AC 54 ms
36,940 KB
testcase_03 AC 57 ms
36,916 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 MLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
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 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.PriorityQueue;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int s = Integer.parseInt(sa[1]) - 1;
		int t = Integer.parseInt(sa[2]) - 1;
		int k = Integer.parseInt(sa[3]);
		sa = br.readLine().split(" ");
		int[] x = new int[n];
		for (int i = 0; i < n; i++) {
			x[i] = Integer.parseInt(sa[i]);
		}
		List<List<Hen>> list = new ArrayList<>(n);
		for (int i = 0; i < n; i++) {
			list.add(new ArrayList<>());
		}
		int m = Integer.parseInt(br.readLine());
		for (int i = 0; i < m; i++) {
			sa = br.readLine().split(" ");
			int a = Integer.parseInt(sa[0]) - 1;
			int b = Integer.parseInt(sa[1]) - 1;
			int c = Integer.parseInt(sa[2]);

			list.get(a).add(new Hen(b, c));
		}
		br.close();

		if (n > 8000) {
			throw new Exception();
		}
		int nk = n + k + 5;
		long[][] d = new long[n][nk];
		int[][] pre = new int[n][nk];
		for (int i = 0; i < n; i++) {
			Arrays.fill(d[i], Long.MAX_VALUE);
		}
		d[s][0] = x[s];
		PriorityQueue<Node> que = new PriorityQueue<Node>();
		Node first = new Node(s, 0, x[s]);
		que.add(first);

		while (!que.isEmpty()) {
			Node cur = que.poll();
			if (cur.d > d[cur.v][cur.v2]) {
				continue;
			}
			for (Hen hen : list.get(cur.v)) {
				long alt = d[cur.v][cur.v2] + hen.c + x[hen.v];
				int nx2 = cur.v2 + 1;
				if (nx2 < nk && alt < d[hen.v][nx2]) {
					d[hen.v][nx2] = alt;
					pre[hen.v][nx2] = cur.v;
					que.add(new Node(hen.v, nx2, alt));
				}
			}
		}
		long ans = Long.MAX_VALUE;
		int ak = 0;
		for (int i = k - 1; i < d[t].length; i++) {
			if (d[t][i] < ans) {
				ans = d[t][i];
				ak = i;
			}
		}
		if (ans == Long.MAX_VALUE) {
			System.out.println("Impossible");
			return;
		}

		System.out.println("Possible");
		System.out.println(ans);
		List<Integer> his = new ArrayList<>();
		int now = t;
		his.add(now + 1);
		for (int i = ak; i > 0; i--) {
			now = pre[now][i];
			his.add(now + 1);
		}
		System.out.println(his.size());
		StringBuilder sb = new StringBuilder();
		for (int i = his.size() - 1; i >= 0; i--) {
			sb.append(his.get(i)).append(' ');
		}
		sb.deleteCharAt(sb.length() - 1);
		System.out.println(sb.toString());
	}

	static class Hen {
		int v, c;

		public Hen(int v, int c) {
			this.v = v;
			this.c = c;
		}
	}

	static class Node implements Comparable<Node> {
		int v, v2;
		long d;

		public Node(int v, int v2, long d) {
			this.v = v;
			this.v2 = v2;
			this.d = d;
		}

		public int compareTo(Node o) {
			return Long.compare(d, o.d);
		}
	}
}
0