結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー KKT89KKT89
提出日時 2021-06-12 03:28:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 159 ms / 3,000 ms
コード長 1,951 bytes
コンパイル時間 5,501 ms
コンパイル使用メモリ 294,236 KB
実行使用メモリ 33,792 KB
最終ジャッジ日時 2024-05-09 00:00:11
合計ジャッジ時間 17,279 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 45 ms
15,232 KB
testcase_05 AC 158 ms
24,856 KB
testcase_06 AC 57 ms
12,928 KB
testcase_07 AC 67 ms
17,280 KB
testcase_08 AC 115 ms
13,496 KB
testcase_09 AC 45 ms
7,552 KB
testcase_10 AC 56 ms
16,640 KB
testcase_11 AC 78 ms
16,384 KB
testcase_12 AC 124 ms
21,888 KB
testcase_13 AC 41 ms
10,496 KB
testcase_14 AC 44 ms
14,848 KB
testcase_15 AC 16 ms
6,272 KB
testcase_16 AC 62 ms
19,712 KB
testcase_17 AC 29 ms
6,016 KB
testcase_18 AC 159 ms
22,912 KB
testcase_19 AC 75 ms
13,696 KB
testcase_20 AC 29 ms
6,108 KB
testcase_21 AC 79 ms
25,728 KB
testcase_22 AC 78 ms
20,608 KB
testcase_23 AC 84 ms
10,752 KB
testcase_24 AC 5 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 5 ms
5,376 KB
testcase_28 AC 6 ms
5,376 KB
testcase_29 AC 6 ms
5,376 KB
testcase_30 AC 4 ms
5,376 KB
testcase_31 AC 5 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 5 ms
5,376 KB
testcase_34 AC 5 ms
5,376 KB
testcase_35 AC 10 ms
5,376 KB
testcase_36 AC 9 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 6 ms
5,376 KB
testcase_39 AC 3 ms
5,376 KB
testcase_40 AC 4 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 5 ms
5,376 KB
testcase_43 AC 6 ms
5,376 KB
testcase_44 AC 4 ms
5,376 KB
testcase_45 AC 3 ms
5,376 KB
testcase_46 AC 5 ms
5,376 KB
testcase_47 AC 7 ms
5,376 KB
testcase_48 AC 12 ms
7,868 KB
testcase_49 AC 11 ms
5,760 KB
testcase_50 AC 27 ms
7,584 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 27 ms
7,552 KB
testcase_53 AC 10 ms
5,628 KB
testcase_54 AC 3 ms
5,376 KB
testcase_55 AC 18 ms
6,888 KB
testcase_56 AC 4 ms
5,376 KB
testcase_57 AC 20 ms
6,144 KB
testcase_58 AC 10 ms
5,608 KB
testcase_59 AC 3 ms
5,376 KB
testcase_60 AC 4 ms
5,376 KB
testcase_61 AC 6 ms
5,376 KB
testcase_62 AC 11 ms
5,504 KB
testcase_63 AC 9 ms
5,376 KB
testcase_64 AC 145 ms
24,728 KB
testcase_65 AC 5 ms
5,376 KB
testcase_66 AC 79 ms
33,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n,s,t,k; cin >> n >> s >> t >> k;
    s--; t--;
    vector<ll> x(n);
    for(int i=0;i<n;i++){
        cin >> x[i];
    }
    vector<vector<pair<int,ll>>> g(n);
    int m; cin >> m;
    for(int i=0;i<m;i++){
        int a,b,y; cin >> a >> b >> y;
        a--; b--;
        g[a].push_back({b,y});
    } 
    const ll INF=1e18;
    vector<vector<ll>> d(n,vector<ll>(k,INF));
    vector<vector<pair<int,int>>> rev(n,vector<pair<int,int>>(k,{-1,-1})); 
    d[s][0]=x[s];
    priority_queue<pair<ll,pair<int,int>>,vector<pair<ll,pair<int,int>>>,greater<pair<ll,pair<int,int>>>> pq;
    pq.push({d[s][0],{s,0}});
    while(pq.size()){
        auto p=pq.top(); pq.pop();
        int ss=p.second.first,cn=p.second.second;
        if(p.first!=d[ss][cn])continue;
        for(auto to:g[ss]){
            ll cost=p.first+to.second+x[to.first];
            int nxt=to.first;
            int nxc=min(k-1,cn+1);
            if(cost<d[nxt][nxc]){
                d[nxt][nxc]=cost;
                rev[nxt][nxc]={ss,cn};
                pq.push({d[nxt][nxc],{nxt,nxc}});
            }
        }
    }
    if(d[t][k-1]==INF){
        printf("Impossible\n");
    }
    else{
        printf("Possible\n");
        printf("%lld\n",d[t][k-1]);
        auto p=rev[t][k-1];
        vector<int> v={t};
        while(p.second>=0){
            int nxt=p.first,nxc=p.second;
            v.push_back(nxt);
            p=rev[nxt][nxc];
        }
        reverse(v.begin(), v.end());
        printf("%d\n",v.size());
        for(int i=0;i<v.size();i++){
            printf("%d ",v[i]+1);
        }
        printf("\n");
    }

}
0