結果

問題 No.3111 Toll Optimization
ユーザー ardririy
提出日時 2025-04-19 14:09:35
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 237 ms / 5,000 ms
コード長 3,140 bytes
コンパイル時間 2,644 ms
コンパイル使用メモリ 211,900 KB
実行使用メモリ 18,552 KB
最終ジャッジ日時 2025-04-19 14:09:46
合計ジャッジ時間 10,863 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 70
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 1 "g.cpp"
#include <bits/stdc++.h>
#line 1 "/home/ardririy/repos/cp-libs/libraries-cpp/input.hpp"



#line 7 "/home/ardririy/repos/cp-libs/libraries-cpp/input.hpp"

using namespace std;

vector<long long> i64_vec_IN(int n) {
    vector<long long> res(n);
    for(int i=0; i<n; i++) {
        cin >> res[i];
    }
    return res;
}

vector<string> str_vec_IN(int n) {
    vector<string> res(n);
    for(int i=0; i<n; i++) {
        cin >> res[i];
    }
    return res;
}

vector<vector<int>> graph_IN(int n, int m) {
    vector<vector<int>> g(n);
    int u, v;
    for(int i=0; i<m; i++) {
        cin >> u >> v;
        u--;
        v--;
        g[u].emplace_back(v);
        g[v].emplace_back(u);
    }
    return g;
}

vector<vector<pair<int, long long>>> weighted_graph_IN(int n, int m) {
    vector<vector<pair<int, long long>>> g(n);
    int u, v;
    long long w;
    for(int i=0; i<m; i++) {
        cin >> u >> v >> w;
        u--;
        v--;
        g[u].push_back({v, w});
        g[v].push_back({u, w});
    }
    return g;
}

#line 3 "g.cpp"

using namespace std;

// using namespace atcoder;

#define all(v) v.begin(),v.end()
#define resort(v) sort(v.rbegin(),v.rend())
using ll = long long;
using ull = unsigned long long;
using vll=vector<ll>;
using vvll = vector<vector<ll>>;
using P = pair<ll,ll>;
using vp=vector<pair<ll, ll>>;
using djks=priority_queue<P, vp, greater<P>>;

const ll inf=1ll<<60;
#define mod10 (ll)1e9+7
#define mod99 (ll)998244353
const double PI = acos(-1);

#define rep(i,n) for (ll i=0;i<n;++i)
#define per(i,n) for(ll i=n-1;i>=0;--i)
#define rep2(i,a,n) for (ll i=a;i<n;++i)
#define per2(i,a,n) for (ll i=n-1;i>=a;--i)


template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }

ll dx[] = {1, 0, -1, 0, -1, 1, -1, 1};
ll dy[] = {0, 1, 0, -1, -1, 1, 1, -1};

void solve() {
    int n, m, k; cin >> n >> m >> k;
    vll c(m, -1); rep(i,m) cin >> c[i];
    vector<vp> g(n);
    rep(i,m) {
        int u, v; cin >> u >> v;
        u--;v--;
        g[u].push_back({v, c[i]});
        g[v].push_back({u, c[i]});
    }

    vll dist(n*(k+1), inf);
    djks pq;
    pq.push({0,n*k});
    while(!pq.empty()) {
        auto [c, p] = pq.top(); pq.pop();
        if(dist[p]!=inf) continue;

        dist[p] = c;
        int ck = p/n;
        for(auto[ni, w]: g[p%n]) {
            // クーポンなし
            {
                int next = n*ck+ni;
                if(dist[next]==inf) {
                    pq.push({c+w, next});
                }
            }
            {
                // クーポンあり
                if(ck>0) {
                    int next = n*(ck-1)+ni;
                    if(dist[next]==inf) {
                        pq.push({c, next});
                    }
                }
            }
        }
    }
    ll ans = inf;
    rep(i,k+1) chmin(ans, dist[n*(i+1)-1]);
    cout << ((ans==inf)?-1:ans) << '\n';
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int t=1;
    //cin >> t;
    while(t--)solve();
}


0