結果

問題 No.1 道のショートカット
ユーザー monakamonaka
提出日時 2022-02-01 18:24:07
言語 TypeScript
(5.7.2)
結果
TLE  
実行時間 -
コード長 1,118 bytes
コンパイル時間 9,027 ms
コンパイル使用メモリ 228,504 KB
実行使用メモリ 123,532 KB
最終ジャッジ日時 2024-12-31 16:45:27
合計ジャッジ時間 90,935 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
104,816 KB
testcase_01 AC 64 ms
46,372 KB
testcase_02 AC 62 ms
46,248 KB
testcase_03 AC 64 ms
97,332 KB
testcase_04 AC 64 ms
46,116 KB
testcase_05 AC 65 ms
123,532 KB
testcase_06 AC 62 ms
46,116 KB
testcase_07 AC 65 ms
99,476 KB
testcase_08 AC 450 ms
109,884 KB
testcase_09 AC 94 ms
52,752 KB
testcase_10 AC 600 ms
115,288 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 66 ms
42,752 KB
testcase_15 AC 64 ms
39,168 KB
testcase_16 AC 70 ms
42,752 KB
testcase_17 AC 66 ms
39,552 KB
testcase_18 AC 67 ms
43,008 KB
testcase_19 AC 67 ms
43,008 KB
testcase_20 AC 1,718 ms
53,888 KB
testcase_21 AC 78 ms
43,392 KB
testcase_22 AC 70 ms
43,136 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 66 ms
39,296 KB
testcase_29 TLE -
testcase_30 AC 1,577 ms
51,552 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 446 ms
47,488 KB
testcase_34 TLE -
testcase_35 AC 101 ms
43,264 KB
testcase_36 AC 608 ms
49,548 KB
testcase_37 AC 1,846 ms
54,400 KB
testcase_38 AC 68 ms
39,424 KB
testcase_39 AC 67 ms
42,880 KB
testcase_40 AC 85 ms
43,136 KB
testcase_41 AC 67 ms
43,008 KB
testcase_42 AC 65 ms
39,552 KB
testcase_43 AC 65 ms
108,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function main(line) {
  const n = Number(line.shift());
  const c = Number(line.shift());
  const v = Number(line.shift());
  const s = line.shift().split(" ").map(x=>Number(x)-1);
  const t = line.shift().split(" ").map(x=>Number(x)-1);
  const y = line.shift().split(" ").map(x=>Number(x));
  const m = line.shift().split(" ").map(x=>Number(x));
  const arr = [];
  for(let i=0; i<v; i++) {
    arr.push({s:s[i], t:t[i], y:y[i], m:m[i]});
  }
  const q = [{id:0, money:c, cost:0}];
  let minCost = Number.MAX_SAFE_INTEGER;
  while(q.length > 0) {
    const now = q.shift();
    const id = now.id;
    const money = now.money;
    const cost = now.cost;
    if(id === n-1) {
      if(cost < minCost) {
        minCost = cost;
      }
    }
    arr.filter(cur => cur.s === id).forEach(cur => {
      const nextMoney = money - cur.y;
      if(nextMoney >= 0) {
        const nextCost = cost + cur.m;
        q.push({id:cur.t, money:nextMoney, cost:nextCost});
      }
    });
  }
  console.log(minCost === Number.MAX_SAFE_INTEGER ? -1 : minCost);
}

main(require("fs").readFileSync("/dev/stdin", "utf8").split("\n"));
0