結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー KudeKude
提出日時 2021-06-11 22:41:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 299 ms / 3,000 ms
コード長 2,643 bytes
コンパイル時間 5,311 ms
コンパイル使用メモリ 274,632 KB
実行使用メモリ 70,648 KB
最終ジャッジ日時 2024-05-08 18:46:51
合計ジャッジ時間 16,519 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 84 ms
24,960 KB
testcase_05 AC 299 ms
53,588 KB
testcase_06 AC 102 ms
21,588 KB
testcase_07 AC 92 ms
19,752 KB
testcase_08 AC 241 ms
31,256 KB
testcase_09 AC 64 ms
10,368 KB
testcase_10 AC 49 ms
7,936 KB
testcase_11 AC 151 ms
29,184 KB
testcase_12 AC 243 ms
45,440 KB
testcase_13 AC 70 ms
14,324 KB
testcase_14 AC 93 ms
28,140 KB
testcase_15 AC 17 ms
5,504 KB
testcase_16 AC 124 ms
38,596 KB
testcase_17 AC 28 ms
5,376 KB
testcase_18 AC 129 ms
11,392 KB
testcase_19 AC 122 ms
20,864 KB
testcase_20 AC 48 ms
10,496 KB
testcase_21 AC 150 ms
46,632 KB
testcase_22 AC 98 ms
23,180 KB
testcase_23 AC 105 ms
9,984 KB
testcase_24 AC 8 ms
5,376 KB
testcase_25 AC 10 ms
6,144 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 7 ms
5,376 KB
testcase_28 AC 13 ms
7,168 KB
testcase_29 AC 10 ms
6,656 KB
testcase_30 AC 8 ms
5,504 KB
testcase_31 AC 11 ms
5,992 KB
testcase_32 AC 5 ms
5,376 KB
testcase_33 AC 13 ms
7,168 KB
testcase_34 AC 10 ms
6,272 KB
testcase_35 AC 33 ms
14,952 KB
testcase_36 AC 24 ms
11,904 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 13 ms
7,296 KB
testcase_39 AC 5 ms
5,376 KB
testcase_40 AC 6 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 10 ms
5,760 KB
testcase_43 AC 11 ms
6,272 KB
testcase_44 AC 4 ms
5,376 KB
testcase_45 AC 5 ms
6,992 KB
testcase_46 AC 12 ms
6,912 KB
testcase_47 AC 22 ms
10,112 KB
testcase_48 AC 29 ms
19,612 KB
testcase_49 AC 37 ms
14,976 KB
testcase_50 AC 70 ms
24,788 KB
testcase_51 AC 5 ms
5,376 KB
testcase_52 AC 91 ms
29,672 KB
testcase_53 AC 32 ms
14,208 KB
testcase_54 AC 6 ms
5,376 KB
testcase_55 AC 63 ms
23,936 KB
testcase_56 AC 4 ms
5,376 KB
testcase_57 AC 60 ms
18,816 KB
testcase_58 AC 38 ms
15,616 KB
testcase_59 AC 8 ms
5,376 KB
testcase_60 AC 8 ms
6,784 KB
testcase_61 AC 16 ms
7,808 KB
testcase_62 AC 42 ms
15,744 KB
testcase_63 AC 22 ms
9,216 KB
testcase_64 AC 205 ms
48,788 KB
testcase_65 AC 7 ms
5,376 KB
testcase_66 AC 133 ms
70,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i,n)for (int i = 0; i < int(n); ++i)
#define rrep(i,n)for (int i = int(n)-1; i >= 0; --i)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
template<class T> void chmax(T& a, const T& b) {a = max(a, b);}
template<class T> void chmin(T& a, const T& b) {a = min(a, b);}
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

const unsigned long long INF = 1002003004005006007;
template<class T>
std::pair<std::vector<unsigned long long>, std::vector<int>> dijkstra(std::vector<std::vector<std::pair<int,T>>>& to, int s=0) {
    struct QueElem {
        int v;
        unsigned long long c;
        bool operator<(const QueElem a) const {return c > a.c;}
        QueElem(int v, unsigned long long c): v(v), c(c) {}
    };
    std::pair<std::vector<unsigned long long>, std::vector<int>> res;
    std::vector<unsigned long long>& dist = res.first;
    std::vector<int>& pre = res.second;
    dist.resize(to.size(), INF);
    pre.resize(to.size(), -1);
    std::priority_queue<QueElem> q;
    dist[s] = 0;
    pre[s] = -1;
    q.emplace(s, 0);
    while(!q.empty()) {
        QueElem qe = q.top(); q.pop();
        int u = qe.v;
        unsigned long long c = qe.c;
        if (c > dist[u]) continue;
        for(auto vc: to[u]) {
            int v = vc.first;
            unsigned long long nc = c + vc.second;
            if (nc < dist[v]) {
                dist[v] = nc;
                pre[v] = u;
                q.emplace(v, nc);
            }
        }
    }
    return res;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, s, t, k;
    cin >> n >> s >> t >> k;
    s--, t--; k--;
    VI x(n);
    rep(i, n) cin >> x[i];
    int m;
    cin >> m;
    vector<vector<P>> to(n * (k + 1));
    rep(_, m) {
        int a, b, y;
        cin >> a >> b >> y;
        --a, --b;
        rep(j, k) {
            to[(k + 1) * a + j].emplace_back((k + 1) * b + j + 1, y + x[b]);
        }
        to[(k + 1) * a + k].emplace_back((k + 1) * b + k, y + x[b]);
    }
    auto [dist, pre] = dijkstra(to, (k + 1) * s);
    if (dist[(k + 1) * t + k] == INF) {
        cout << "Impossible" << '\n';
        return 0;
    }
    cout << "Possible" << '\n';
    cout << x[s] + dist[(k + 1) * t + k] << '\n';
    VI ps;
    for(int v = (k + 1) * t + k; v != -1; v = pre[v]) {
        ps.push_back(v / (k + 1));
    }
    int sz = ps.size();
    cout << sz << '\n';
    rrep(i, sz) cout << ps[i] + 1 << " \n"[i == 0];
}
0