結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー kwm_tkwm_t
提出日時 2021-06-17 18:09:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 179 ms / 3,000 ms
コード長 2,483 bytes
コンパイル時間 2,562 ms
コンパイル使用メモリ 190,128 KB
実行使用メモリ 35,840 KB
最終ジャッジ日時 2024-06-11 00:36:41
合計ジャッジ時間 15,977 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
8,064 KB
testcase_01 AC 6 ms
8,192 KB
testcase_02 AC 5 ms
8,064 KB
testcase_03 AC 5 ms
8,192 KB
testcase_04 AC 53 ms
18,304 KB
testcase_05 AC 179 ms
26,228 KB
testcase_06 AC 70 ms
16,000 KB
testcase_07 AC 78 ms
19,712 KB
testcase_08 AC 118 ms
15,820 KB
testcase_09 AC 50 ms
10,624 KB
testcase_10 AC 62 ms
18,944 KB
testcase_11 AC 87 ms
18,816 KB
testcase_12 AC 139 ms
23,680 KB
testcase_13 AC 48 ms
13,696 KB
testcase_14 AC 52 ms
17,920 KB
testcase_15 AC 20 ms
10,368 KB
testcase_16 AC 65 ms
22,272 KB
testcase_17 AC 32 ms
9,472 KB
testcase_18 AC 163 ms
23,552 KB
testcase_19 AC 82 ms
16,384 KB
testcase_20 AC 34 ms
9,856 KB
testcase_21 AC 86 ms
27,520 KB
testcase_22 AC 91 ms
22,528 KB
testcase_23 AC 95 ms
12,928 KB
testcase_24 AC 10 ms
8,320 KB
testcase_25 AC 9 ms
8,192 KB
testcase_26 AC 6 ms
8,064 KB
testcase_27 AC 9 ms
8,192 KB
testcase_28 AC 10 ms
8,320 KB
testcase_29 AC 9 ms
8,320 KB
testcase_30 AC 9 ms
8,320 KB
testcase_31 AC 10 ms
8,320 KB
testcase_32 AC 7 ms
8,320 KB
testcase_33 AC 11 ms
8,320 KB
testcase_34 AC 9 ms
8,448 KB
testcase_35 AC 14 ms
8,448 KB
testcase_36 AC 13 ms
8,320 KB
testcase_37 AC 7 ms
8,064 KB
testcase_38 AC 10 ms
8,320 KB
testcase_39 AC 7 ms
8,320 KB
testcase_40 AC 8 ms
8,320 KB
testcase_41 AC 6 ms
8,064 KB
testcase_42 AC 9 ms
8,320 KB
testcase_43 AC 10 ms
8,448 KB
testcase_44 AC 7 ms
8,320 KB
testcase_45 AC 7 ms
9,600 KB
testcase_46 AC 9 ms
8,704 KB
testcase_47 AC 11 ms
9,344 KB
testcase_48 AC 15 ms
12,288 KB
testcase_49 AC 16 ms
9,984 KB
testcase_50 AC 33 ms
12,020 KB
testcase_51 AC 7 ms
8,320 KB
testcase_52 AC 32 ms
11,860 KB
testcase_53 AC 15 ms
10,060 KB
testcase_54 AC 6 ms
8,320 KB
testcase_55 AC 23 ms
11,320 KB
testcase_56 AC 7 ms
8,576 KB
testcase_57 AC 25 ms
10,368 KB
testcase_58 AC 15 ms
9,984 KB
testcase_59 AC 8 ms
8,576 KB
testcase_60 AC 8 ms
9,088 KB
testcase_61 AC 10 ms
8,832 KB
testcase_62 AC 16 ms
9,856 KB
testcase_63 AC 14 ms
8,960 KB
testcase_64 AC 171 ms
26,544 KB
testcase_65 AC 9 ms
8,576 KB
testcase_66 AC 81 ms
35,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
//#include "atcoder/all"
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
const long long LINF = 1e18;
//const bool debug = false;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<long long,pair<int,int>>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
int n, s, t, k;
struct Edge {
	int to, cost;
	Edge(int _to, int _cost) :to(_to), cost(_cost) {}
};
vector<Edge>g[200005]; vector<vector<int>> data(3, vector<int>(4));
vector<long long>x;
void dikstra() {
	vector<vector<long long>> d(n, vector<long long>(k, LINF));
	vector<vector<pair<int, int>>> pre(n, vector<pair<int, int>>(k, { -1,-1 }));
	priority_queue<P, vector<P>, greater<P> > q;//小さいもの順
	q.push({ x[s], { s,0 } });
	d[s][0] = x[s];
	while (!q.empty()) {
		auto tmp = q.top();
		q.pop();
		long long cost = tmp.first;
		int pos = tmp.second.first;
		int count = tmp.second.second;
		if (cost > d[pos][count]) continue;
		for (Edge e : g[pos]) {
			long long ncost = cost + e.cost + x[e.to];
			int npos = e.to;
			int ncount = min(k - 1, count + 1);
			if (ncost < d[npos][ncount]) {
				pre[npos][ncount] = { pos,count };
				d[npos][ncount] = ncost;
				q.push({ d[npos][ncount], {npos,ncount} });
			}
		}
	}
	if (LINF == d[t][k - 1]) {
		cout << "Impossible" << endl;
	}
	else {
		cout << "Possible" << endl;
		cout << d[t][k - 1] << endl;
		vector<int>ans;
		ans.push_back(t);
		pair<int, int>p = pre[t][k - 1];
		while (true) {
			ans.push_back(p.first);
			p = pre[p.first][p.second];
			if (p.first == -1)break;
		}
		cout << ans.size() << endl;
		rrep(i, ans.size()) {
			cout << ans[i] + 1 << " ";
		}
	}
}
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin >> n >> s >> t >> k;
	s--; t--;
	x.resize(n);
	rep(i, n)cin >> x[i];
	int m; cin >> m;
	rep(i, m) {
		int a, b, y; cin >> a >> b >> y;
		a--; b--;
		g[a].emplace_back(b, y);
	}
	dikstra();
	return 0;
}
0