結果

問題 No.1 道のショートカット
ユーザー tsubu_taiyakitsubu_taiyaki
提出日時 2017-01-29 10:00:05
言語 D
(dmd 2.107.1)
結果
AC  
実行時間 6 ms / 5,000 ms
コード長 1,736 bytes
コンパイル時間 939 ms
コンパイル使用メモリ 106,524 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-03 01:00:14
合計ジャッジ時間 2,954 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import std.algorithm;
import std.array;
import std.ascii;
import std.bigint;
import std.complex;
import std.container;
import std.conv;
import std.functional;
import std.math;
import std.range;
import std.stdio;
import std.string;
import std.typecons;

auto readInts() {
	return array(map!(to!int)(readln().strip().split()));
}
auto readInt() {
	return readInts()[0];
}
auto readLongs() {
	return array(map!(to!long)(readln().strip().split()));
}
auto readLong() {
	return readLongs()[0];
}

void readlnTo(T...)(ref T t) {
    auto s = readln().split();
    assert(s.length == t.length);
    foreach(ref ti; t) {
        ti = s[0].to!(typeof(ti));
        s = s[1..$];
    }
}

const real eps = 1e-10;

const long p = 1_000_000_000 + 7;

void main(){
    auto N = readInt();
    auto C = readInt();
    auto V = readInt();
    auto S = readInts();
    auto T = readInts();
    auto Y = readInts();
    auto M = readInts();
    S[] -= 1;
    T[] -= 1;

    auto e = new Tuple!(int, int, int)[][](N);
    foreach(i; iota(V)) {
        e[S[i]] ~= tuple(T[i], Y[i], M[i]);
    }
    
    auto dp = new long[][](N, C+1);
    foreach(i; iota(N)) {
        foreach(j; iota(C+1)) {
            dp[i][j] = long.max/2;
        }
    }
    dp[0][0] = 0;
    foreach(i; iota(N)) {
        foreach(j; iota(C+1)) {
            foreach(ei; e[i]) {
                auto t = ei[0];
                auto y = ei[1];
                auto m = ei[2];
                if(j+y > C) {
                    continue;
                }
                dp[t][j+y] = min(dp[t][j+y], dp[i][j] + m);
            }
        }
    }
    auto ans = long.max;
    foreach(i; iota(C+1)) {
        ans = min(ans, dp[N-1][i]);
    }
    writeln(ans < long.max/2 ? ans: -1);
}

0