結果

問題 No.1 道のショートカット
ユーザー finefine
提出日時 2016-03-30 00:33:54
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,453 bytes
コンパイル時間 1,036 ms
コンパイル使用メモリ 150,912 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-27 21:54:29
合計ジャッジ時間 2,354 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,384 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 1 ms
4,504 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 1 ms
4,376 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 2 ms
4,376 KB
testcase_24 AC 2 ms
4,376 KB
testcase_25 AC 1 ms
4,380 KB
testcase_26 AC 1 ms
4,380 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 1 ms
4,376 KB
testcase_29 AC 2 ms
4,376 KB
testcase_30 AC 2 ms
4,380 KB
testcase_31 AC 1 ms
4,376 KB
testcase_32 AC 2 ms
4,376 KB
testcase_33 AC 2 ms
4,376 KB
testcase_34 AC 2 ms
4,376 KB
testcase_35 AC 2 ms
4,376 KB
testcase_36 AC 2 ms
4,376 KB
testcase_37 AC 1 ms
4,380 KB
testcase_38 AC 1 ms
4,376 KB
testcase_39 AC 2 ms
4,376 KB
testcase_40 AC 1 ms
4,380 KB
testcase_41 AC 1 ms
4,380 KB
testcase_42 AC 1 ms
4,376 KB
testcase_43 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

struct Edge {
  int to;
  int t_cost;
  int m_cost;
  Edge(int to, int t_cost, int m_cost) : to(to), t_cost(t_cost), m_cost(m_cost) {}  
};

typedef vector<vector<Edge> > AdjList; //隣接リスト
typedef vector<Edge>::iterator Edge_it;

const int INF = 10000000;

AdjList graph;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n, v, c, s[1500], t[1500], y[1500], m[1500];
    cin >> n >> c >> v;
    graph = AdjList(n);
    for(int i = 0; i < v; i++) {
        cin >> s[i];
        s[i]--;
    }
    for(int i = 0; i < v; i++) {
        cin >> t[i];
        t[i]--;
    }
    for(int i = 0; i < v; i++) {
        cin >> y[i];
    }
    for(int i = 0; i < v; i++) {
        cin >> m[i];
    }
    for(int i = 0; i < v; i++) {
        graph[s[i]].emplace_back(t[i], m[i], y[i]);
    }
    int dp[50][301] = {};
    for(int i = 1; i < n; i++) {
        for(int j = 0; j <= c; j++) {
            dp[i][j] = INF; 
        }
    }
    for(int i = 0; i < n; i++) {
        for(int j = 0; j <= c; j++) {
            for(auto it = graph[i].begin(), e = graph[i].end(); it != e; ++it) {
                if ((*it).m_cost > j) continue;
                dp[(*it).to][j] = min(dp[(*it).to][j], dp[i][j - (*it).m_cost] + (*it).t_cost);
            }
        }
    }
    if (dp[n - 1][c] == INF) cout << -1 <<"\n";
    else cout << dp[n - 1][c] << "\n";
    return 0;
    }
0