結果

問題 No.1 道のショートカット
ユーザー PachicobuePachicobue
提出日時 2017-03-13 21:01:02
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,142 bytes
コンパイル時間 1,597 ms
コンパイル使用メモリ 71,760 KB
実行使用メモリ 814,496 KB
最終ジャッジ日時 2023-09-22 13:06:59
合計ジャッジ時間 6,880 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <cassert>
#include <iostream>
#include <vector>
#include <algorithm>
#include <utility>

#define FOR(i, a, b) for (int i = (a); i < (b); i++)
#define RFOR(i, a, b) for (int i = (b)-1; i >= (a); i--)
#define rep(i, n) for (int i = 0; i < (n); i++)
#define rep1(i, n) for (int i = 1; i <= (n); i++)
#define rrep(i, n) for (int i = (n)-1; i >= 0; i--)

#define pb push_back
#define mp make_pair
#define fst first
#define snd second
#define show(x) cout << #x << " = " << x << endl
#define chmin(x, y) x = min(x, y)
#define chmax(x, y) x = max(x, y)
#define pii pair<int, int>
#define vi vector<int>

using namespace std;
template <class S, class T>
ostream& operator<<(ostream& o, const pair<S, T>& p)
{
    return o << "(" << p.first << "," << p.second << ")";
}
template <class T>
ostream& operator<<(ostream& o, const vector<T>& vc)
{
    o << "sz = " << vc.size() << endl
      << "[";
    for (const T& v : vc)
        o << v << ",";
    o << "]";
    return o;
}
typedef long long ll;

#define NMAX 51
#define MAX 101

int N, C, V;
int S[MAX];
int T[MAX];
int Y[MAX];
int M[MAX];

vector<pii> data[NMAX];
struct edge {
    int to;
    int cost;
    int tim;
};
vector<edge> edges[NMAX];

void dfs(int start)
{
    for (const auto& i : edges[start]) {
        const int to = i.to;
        const int cost = i.cost;
        const int tim = i.tim;
        for (const auto& j : data[start]) {
            const int time = j.fst;
            const int money = j.snd;
            if (money >= cost) {
                data[to].pb(mp(time + tim, money - cost));
            }
        }
        dfs(to);
    }
}

int main()
{
    cin >> N >> C >> 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];
    }
    rep(i, V)
    {
        edges[T[i] - 1].pb(edge{S[i] - 1, Y[i], M[i]});
    }
    data[N - 1].pb(mp(0, C));

    dfs(N - 1);
    sort(data[0].begin(), data[0].end());
    if (data[0].empty()) {
        cout << -1 << endl;
    } else {
        cout << data[0][0].fst << endl;
    }

    return 0;
}
0