結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー 👑 KazunKazun
提出日時 2021-05-31 23:55:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 287 ms / 3,000 ms
コード長 1,724 bytes
コンパイル時間 1,178 ms
コンパイル使用メモリ 90,592 KB
実行使用メモリ 43,500 KB
最終ジャッジ日時 2024-05-08 16:25:40
合計ジャッジ時間 12,922 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 110 ms
19,968 KB
testcase_05 AC 266 ms
30,336 KB
testcase_06 AC 117 ms
16,256 KB
testcase_07 AC 155 ms
20,352 KB
testcase_08 AC 214 ms
16,272 KB
testcase_09 AC 113 ms
7,552 KB
testcase_10 AC 131 ms
17,792 KB
testcase_11 AC 145 ms
19,072 KB
testcase_12 AC 222 ms
28,032 KB
testcase_13 AC 82 ms
12,544 KB
testcase_14 AC 96 ms
18,944 KB
testcase_15 AC 35 ms
6,656 KB
testcase_16 AC 126 ms
24,320 KB
testcase_17 AC 75 ms
5,760 KB
testcase_18 AC 272 ms
23,936 KB
testcase_19 AC 139 ms
15,616 KB
testcase_20 AC 66 ms
6,272 KB
testcase_21 AC 176 ms
31,616 KB
testcase_22 AC 184 ms
26,752 KB
testcase_23 AC 196 ms
11,008 KB
testcase_24 AC 10 ms
5,376 KB
testcase_25 AC 5 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 9 ms
5,376 KB
testcase_29 AC 9 ms
5,376 KB
testcase_30 AC 7 ms
5,376 KB
testcase_31 AC 7 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 9 ms
5,376 KB
testcase_34 AC 7 ms
5,376 KB
testcase_35 AC 16 ms
5,376 KB
testcase_36 AC 12 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 8 ms
5,376 KB
testcase_39 AC 3 ms
5,376 KB
testcase_40 AC 5 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 6 ms
5,376 KB
testcase_43 AC 8 ms
5,376 KB
testcase_44 AC 4 ms
5,376 KB
testcase_45 AC 4 ms
6,144 KB
testcase_46 AC 6 ms
5,376 KB
testcase_47 AC 8 ms
5,760 KB
testcase_48 AC 13 ms
10,380 KB
testcase_49 AC 13 ms
6,904 KB
testcase_50 AC 31 ms
9,976 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 30 ms
9,808 KB
testcase_53 AC 11 ms
7,100 KB
testcase_54 AC 3 ms
5,376 KB
testcase_55 AC 19 ms
9,072 KB
testcase_56 AC 4 ms
5,376 KB
testcase_57 AC 22 ms
7,296 KB
testcase_58 AC 12 ms
7,004 KB
testcase_59 AC 4 ms
5,376 KB
testcase_60 AC 4 ms
5,376 KB
testcase_61 AC 7 ms
5,376 KB
testcase_62 AC 13 ms
6,528 KB
testcase_63 AC 10 ms
5,376 KB
testcase_64 AC 287 ms
32,076 KB
testcase_65 AC 5 ms
5,376 KB
testcase_66 AC 149 ms
43,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<queue>

using namespace std;
using ll=long long;
typedef pair<long long, long long> P;
const long long INF = 1e18;
int main() {
    ll N, S, T, K; cin >> N >> S >> T >> K;
    vector<ll> X(N + 1);
    for (int i = 1; i <= N; i++) cin >> X[i];
    ll M; cin >> M;
    vector<vector<P>>E(N + 1);
    ll A, B, Y;
    for (int i = 0; i < M; i++) {
        cin >> A >> B >> Y;
        E[A].push_back({ B, Y });
    }
    vector<vector<ll>> DP(N + 1, vector<ll>(K + 1, INF));
    DP[S][1] = X[S];
    vector<vector<P>>Prev(N + 1, vector<P>(K + 1, { 0, 0 }));
    priority_queue<pair<ll,P>, vector<pair<ll,P>>, greater<pair<ll,P>>>Q;
    Q.push(make_pair(0LL,make_pair(S,1)));
    
    pair<ll,P> R;
    ll d,x,k,y,m;
    while (!Q.empty()) {
        R = Q.top();
        Q.pop();

        d=R.first;
        x=R.second.first;
        k=R.second.second;

        if (DP[x][k] < d) continue;
        if (x == T && k == K) break;
        long long L = min(K, k + 1);
        for (P a : E[x]) {
            y = a.first, m = a.second;
            if (DP[x][k] + m + X[y] < DP[y][L]) {
                DP[y][L] = DP[x][k] + m + X[y];
                Prev[y][L] = { x, k };
                Q.push({DP[y][L],{y,L} });
            }
        }
    }
    if (DP[T][K] >= INF) {
        cout << "Impossible" << endl;
        return 0;
    }

    x = T;
    k = K;

    vector<ll>Z;
    while (k > 0) {
        Z.push_back(x);
        P ans = Prev[x][k];
        x = ans.first; k = ans.second;
    }
    cout << "Possible" << endl << DP[T][K] << endl << Z.size() << endl;
    for (long long i = Z.size() - 1; i >= 0; i--) {
        if (i != Z.size() - 1) cout << ' ';
        cout << Z[i];
    }
    cout << endl;
}
0