結果

問題 No.1 道のショートカット
ユーザー yogi_cgyogi_cg
提出日時 2020-03-28 00:46:23
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 749 ms / 5,000 ms
コード長 1,506 bytes
コンパイル時間 1,750 ms
コンパイル使用メモリ 176,648 KB
実行使用メモリ 202,624 KB
最終ジャッジ日時 2024-07-20 16:46:47
合計ジャッジ時間 15,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
18,688 KB
testcase_01 AC 15 ms
18,816 KB
testcase_02 AC 15 ms
18,688 KB
testcase_03 AC 43 ms
46,080 KB
testcase_04 AC 11 ms
14,976 KB
testcase_05 AC 14 ms
18,688 KB
testcase_06 AC 42 ms
46,208 KB
testcase_07 AC 48 ms
46,080 KB
testcase_08 AC 625 ms
202,496 KB
testcase_09 AC 477 ms
202,496 KB
testcase_10 AC 557 ms
202,496 KB
testcase_11 AC 634 ms
190,848 KB
testcase_12 AC 749 ms
202,496 KB
testcase_13 AC 744 ms
202,624 KB
testcase_14 AC 99 ms
81,408 KB
testcase_15 AC 123 ms
167,424 KB
testcase_16 AC 259 ms
190,848 KB
testcase_17 AC 60 ms
77,312 KB
testcase_18 AC 194 ms
194,560 KB
testcase_19 AC 154 ms
155,648 KB
testcase_20 AC 246 ms
182,912 KB
testcase_21 AC 167 ms
139,904 KB
testcase_22 AC 129 ms
120,448 KB
testcase_23 AC 607 ms
93,184 KB
testcase_24 AC 497 ms
93,184 KB
testcase_25 AC 205 ms
112,512 KB
testcase_26 AC 142 ms
85,248 KB
testcase_27 AC 579 ms
190,848 KB
testcase_28 AC 61 ms
77,440 KB
testcase_29 AC 642 ms
120,576 KB
testcase_30 AC 186 ms
57,984 KB
testcase_31 AC 316 ms
30,592 KB
testcase_32 AC 446 ms
171,392 KB
testcase_33 AC 368 ms
151,808 KB
testcase_34 AC 564 ms
85,248 KB
testcase_35 AC 389 ms
14,976 KB
testcase_36 AC 487 ms
163,456 KB
testcase_37 AC 404 ms
97,152 KB
testcase_38 AC 124 ms
116,480 KB
testcase_39 AC 187 ms
159,616 KB
testcase_40 AC 304 ms
187,008 KB
testcase_41 AC 163 ms
135,936 KB
testcase_42 AC 32 ms
42,368 KB
testcase_43 AC 122 ms
167,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h> 

#define int long long

#define REP(i, b) for(int i = 0; i < (b); i++)
#define REPS(i, b) for(int i = 1; i <= (b); i++)
#define ALL(v) (v).begin(), (v).end()

using namespace std;

using pi = pair<int, int>;
using vi = vector<int>;
using vs = vector<string>;
using vb = vector<bool>;
using vpi = vector<pi>;
using vvi = vector<vi>;
using vvb = vector<vb>;

const int INF = 1e10;
const int MOD = 1e9+7;

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

signed main()
{
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    cout << fixed << setprecision(10);

    typedef struct
    {
        int to, cost, time;
    } Edge;

    int N, C, V; cin >> N >> C >> V;
    vi S(V), T(V), Y(V), M(V);
    REP(i, V) cin >> S[i];
    REP(i, V) cin >> T[i];
    REP(i, V) cin >> Y[i];
    REP(i, V) cin >> M[i];

    vector<vector<Edge>> E(N);
    REP(i, V)
    {
        E[S[i]-1].push_back(Edge{T[i]-1, Y[i], M[i]});
    }

    vvi dp(N, vi(500000, INF)); dp[0][0] = 0;
    REP(i, N-1)
    {
        REP(j, E[i].size())
        {
            REP(k, 500000)
            {
                if(dp[i][k] != INF) chmin(dp[E[i][j].to][k+E[i][j].cost], dp[i][k]+E[i][j].time);
            }
        }
    }
    int ans = INF;
    REP(i, C+1) chmin(ans, dp[N-1][i]);
    if(ans == INF) cout << -1 << endl;
    else cout << ans << endl;
}
0