結果

問題 No.1 道のショートカット
ユーザー ShibuyapShibuyap
提出日時 2020-07-04 15:38:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 5,000 ms
コード長 1,707 bytes
コンパイル時間 2,271 ms
コンパイル使用メモリ 209,544 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-07-20 16:50:31
合計ジャッジ時間 3,769 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,960 KB
testcase_01 AC 6 ms
8,960 KB
testcase_02 AC 6 ms
8,960 KB
testcase_03 AC 6 ms
9,088 KB
testcase_04 AC 6 ms
9,088 KB
testcase_05 AC 6 ms
8,960 KB
testcase_06 AC 7 ms
9,088 KB
testcase_07 AC 7 ms
9,088 KB
testcase_08 AC 15 ms
12,416 KB
testcase_09 AC 14 ms
11,776 KB
testcase_10 AC 18 ms
13,440 KB
testcase_11 AC 20 ms
14,592 KB
testcase_12 AC 19 ms
13,568 KB
testcase_13 AC 18 ms
13,440 KB
testcase_14 AC 8 ms
9,344 KB
testcase_15 AC 6 ms
8,960 KB
testcase_16 AC 10 ms
10,240 KB
testcase_17 AC 6 ms
8,960 KB
testcase_18 AC 8 ms
9,600 KB
testcase_19 AC 7 ms
9,472 KB
testcase_20 AC 11 ms
10,496 KB
testcase_21 AC 9 ms
9,728 KB
testcase_22 AC 8 ms
9,472 KB
testcase_23 AC 20 ms
15,104 KB
testcase_24 AC 17 ms
13,568 KB
testcase_25 AC 10 ms
10,496 KB
testcase_26 AC 9 ms
9,856 KB
testcase_27 AC 20 ms
13,952 KB
testcase_28 AC 6 ms
9,088 KB
testcase_29 AC 19 ms
15,232 KB
testcase_30 AC 10 ms
10,752 KB
testcase_31 AC 11 ms
12,672 KB
testcase_32 AC 14 ms
11,776 KB
testcase_33 AC 12 ms
11,264 KB
testcase_34 AC 17 ms
13,568 KB
testcase_35 AC 11 ms
12,032 KB
testcase_36 AC 17 ms
12,928 KB
testcase_37 AC 15 ms
13,184 KB
testcase_38 AC 8 ms
9,472 KB
testcase_39 AC 8 ms
9,600 KB
testcase_40 AC 13 ms
10,752 KB
testcase_41 AC 9 ms
9,728 KB
testcase_42 AC 6 ms
8,960 KB
testcase_43 AC 6 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("Yes");}else{puts("No");}
struct edge{ int to, cost; };
const int INF = 1001001001;
const int MAX_N = 200005;
const int MAX_V = 200005;
vector<edge> G[MAX_V];
int d[MAX_V];

void dijkstra(int s){
    // greater<P>を指定することでfirstが小さい順に取り出せるようにする
    priority_queue<P, vector<P>, greater<P> > que;
    fill(d, d+MAX_V, INF);
    d[s] = 0;
    que.push(P(0, s));

    while(!que.empty()){
        P p = que.top();
        que.pop();
        int v = p.second;
        for(int i=0; i<G[v].size(); i++){
            edge e = G[v][i];
            if(d[e.to] > d[v] + e.cost){
                d[e.to] = d[v] + e.cost;
                que.push(P(d[e.to], e.to));
            }
        }
    }
}

int main() {
    int n, c, v;
    cin >> n >> c >> v;
    int s[v], t[v], y[v], m[v];
    rep(i,v){
        cin >> s[i]; s[i]--;
    }
    rep(i,v){
        cin >> t[i]; t[i]--;
    }
    rep(i,v)cin >> y[i];
    rep(i,v)cin >> m[i];

    rep(i,v){
        int from = s[i];
        int to = t[i];
        int cost = m[i];
        int money = y[i];
        rep(j,400){
            if(j - money < 0)continue;
            edge e;
            e.to = to * 400 + (j - money);
            e.cost = cost;
            G[from*400 + j].push_back(e);
        }
    }

    dijkstra(c);

    int ans = 1001001001;
    rep(i,400)ans = min(ans, d[(n-1)*400+i]);
    if(ans >= INF)ans = -1;
    cout << ans << endl;
    return 0;
}

0