結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー momoyuumomoyuu
提出日時 2024-10-06 23:47:54
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 183 ms / 3,000 ms
コード長 1,831 bytes
コンパイル時間 1,583 ms
コンパイル使用メモリ 122,372 KB
実行使用メモリ 43,008 KB
最終ジャッジ日時 2024-10-06 23:48:09
合計ジャッジ時間 13,079 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 48 ms
19,840 KB
testcase_05 AC 160 ms
30,552 KB
testcase_06 AC 53 ms
16,128 KB
testcase_07 AC 63 ms
20,224 KB
testcase_08 AC 114 ms
16,164 KB
testcase_09 AC 40 ms
7,680 KB
testcase_10 AC 50 ms
17,792 KB
testcase_11 AC 80 ms
19,456 KB
testcase_12 AC 124 ms
28,288 KB
testcase_13 AC 39 ms
12,544 KB
testcase_14 AC 46 ms
19,072 KB
testcase_15 AC 16 ms
6,528 KB
testcase_16 AC 63 ms
24,320 KB
testcase_17 AC 26 ms
5,632 KB
testcase_18 AC 134 ms
24,192 KB
testcase_19 AC 64 ms
15,616 KB
testcase_20 AC 26 ms
6,144 KB
testcase_21 AC 75 ms
31,616 KB
testcase_22 AC 72 ms
26,880 KB
testcase_23 AC 73 ms
11,256 KB
testcase_24 AC 5 ms
5,248 KB
testcase_25 AC 4 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 4 ms
5,248 KB
testcase_28 AC 6 ms
5,248 KB
testcase_29 AC 5 ms
5,248 KB
testcase_30 AC 4 ms
5,248 KB
testcase_31 AC 5 ms
5,248 KB
testcase_32 AC 3 ms
5,248 KB
testcase_33 AC 6 ms
5,248 KB
testcase_34 AC 5 ms
5,248 KB
testcase_35 AC 10 ms
5,248 KB
testcase_36 AC 8 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 5 ms
5,248 KB
testcase_39 AC 3 ms
5,248 KB
testcase_40 AC 3 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 5 ms
5,248 KB
testcase_43 AC 5 ms
5,248 KB
testcase_44 AC 3 ms
5,248 KB
testcase_45 AC 3 ms
5,760 KB
testcase_46 AC 6 ms
5,248 KB
testcase_47 AC 8 ms
5,248 KB
testcase_48 AC 13 ms
9,664 KB
testcase_49 AC 13 ms
6,144 KB
testcase_50 AC 30 ms
9,124 KB
testcase_51 AC 3 ms
5,248 KB
testcase_52 AC 31 ms
8,960 KB
testcase_53 AC 10 ms
6,388 KB
testcase_54 AC 4 ms
5,248 KB
testcase_55 AC 19 ms
8,168 KB
testcase_56 AC 3 ms
5,248 KB
testcase_57 AC 23 ms
7,040 KB
testcase_58 AC 11 ms
6,248 KB
testcase_59 AC 4 ms
5,248 KB
testcase_60 AC 4 ms
5,248 KB
testcase_61 AC 7 ms
5,248 KB
testcase_62 AC 13 ms
6,016 KB
testcase_63 AC 10 ms
5,248 KB
testcase_64 AC 183 ms
31,968 KB
testcase_65 AC 5 ms
5,248 KB
testcase_66 AC 89 ms
43,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<queue>
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll 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<ll,ll>>> g(n);
    int m;
    cin>>m;
    for(int i = 0;i<m;i++){
        ll a,b,y;
        cin>>a>>b>>y;
        a--;b--;
        g[a].push_back(make_pair(b,y));
    }
    vector<vector<ll>> dp(n,vector<ll>(k+1,1e18));
    vector<vector<pair<ll,ll>>> prev(n,vector<pair<ll,ll>>(k+1,make_pair(-1,-1)));
    dp[s][1] = x[s];
    using dat = pair<ll,pair<ll,ll>>;
    priority_queue<dat,vector<dat>,greater<dat>> que;
    que.push({x[s],{s,1}});

    while(que.size()){
        auto now = que.top();
        que.pop();
        int ni = now.second.first;
        int t = now.second.second;
        if(dp[ni][t]!=now.first) continue;
        for(auto itr:g[ni]){
            int to = itr.first;
            ll cost = now.first + itr.second + x[to];
            int nt = t + 1;
            if(nt>k) nt = k;
            if(dp[to][nt]<=cost) continue;
            dp[to][nt] = cost;
            prev[to][nt] = make_pair(ni,t);
            que.push({cost,{to,nt}});
        }
    }

    if(dp[t][k]==1e18){
        cout<<"Impossible\n";
        return 0;
    }
    cout<<"Possible\n";
    cout<<dp[t][k]<<endl;
    vector<int> ans;
    ll ni = t;
    ll p = k;
    ans.push_back(ni);
    while(true){
        auto nxt = prev[ni][p];
        if(nxt.first==-1) break;
        ni = nxt.first;
        p = nxt.second;
        ans.push_back(ni);
    }
    cout<<ans.size()<<endl;
    reverse(ans.begin(),ans.end());
    for(int i = 0;i<ans.size();i++){
        if(i) cout<<" ";
        cout<<ans[i]+1;
    }
    cout<<endl;
}

0