結果
問題 | No.1 道のショートカット |
ユーザー | iicafiaxus |
提出日時 | 2016-09-01 23:58:55 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,589 bytes |
コンパイル時間 | 844 ms |
コンパイル使用メモリ | 132,096 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-12 04:06:59 |
合計ジャッジ時間 | 2,108 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 1 ms
6,940 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 2 ms
6,940 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 2 ms
6,940 KB |
testcase_39 | AC | 1 ms
6,940 KB |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 1 ms
6,940 KB |
testcase_43 | AC | 1 ms
6,940 KB |
ソースコード
import std.stdio; import std.conv, std.array, std.algorithm, std.string; import std.math, std.random, std.range, std.datetime; import std.bigint; class Edge{ Node from; Node to; int cost; int time; this(Node from, Node to, int cost, int time){ this.from = from; this.to = to; this.cost = cost; this.time = time; to.inedges ~= this; } } class Node{ Edge[] inedges; int[int] xs; // cost -> time this(){ } } void main(){ int n = readln.chomp.to!int; int c = readln.chomp.to!int; int v = readln.chomp.to!int; int[] ss = readln.chomp.split.map!(to!int).map!(x => x - 1).array; int[] ts = readln.chomp.split.map!(to!int).map!(x => x - 1).array; int[] ys = readln.chomp.split.map!(to!int).array; int[] ms = readln.chomp.split.map!(to!int).array; Node[] nodes; nodes ~= new Node; nodes[0].xs[0] = 0; foreach(i; 0 .. n) nodes ~= new Node; Edge[] edges; for(int i = 0; i < v; i ++){ edges ~= new Edge(nodes[ss[i]], nodes[ts[i]], ys[i], ms[i]); } foreach(no; nodes){ foreach(ed; no.inedges){ foreach(cq; ed.from.xs.keys){ if(cq + ed.cost <= c){ if(!(cq + ed.cost in no.xs) || no.xs[cq + ed.cost] < ed.from.xs[cq] + ed.time){ no.xs[cq + ed.cost] = ed.from.xs[cq] + ed.time; } } } } int thr = int.max; int[] ks = no.xs.keys; ks.sort!("a < b")(); foreach(k; ks){ if(no.xs[k] >= thr) no.xs.remove(k); else thr = no.xs[k]; } } int ans = -1; if(nodes[n - 1].xs.keys.length){ int min = int.max; foreach(t; nodes[n - 1].xs){ if(t < min) min = t; } ans = min; } ans.writeln; }