結果

問題 No.160 最短経路のうち辞書順最小
ユーザー te-shte-sh
提出日時 2017-02-06 13:54:11
言語 D
(dmd 2.106.1)
結果
TLE  
実行時間 -
コード長 1,563 bytes
コンパイル時間 925 ms
コンパイル使用メモリ 119,316 KB
実行使用メモリ 8,232 KB
最終ジャッジ日時 2023-09-03 01:20:05
合計ジャッジ時間 8,250 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 6 ms
4,380 KB
testcase_05 AC 12 ms
4,376 KB
testcase_06 AC 14 ms
4,376 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;
import std.container; // SList, DList, BinaryHeap

void main()
{
  auto rd1 = readln.split.to!(size_t[]), n = rd1[0], m = rd1[1], s = rd1[2], g = rd1[3];
  auto aij = new int[][](n, n);
  foreach (_; m.iota) {
    auto rd2 = readln.split, a = rd2[0].to!size_t, b = rd2[1].to!size_t, c = rd2[2].to!int;
    aij[a][b] = aij[b][a] = c;
  }

  auto mi = dijkstra(aij, s)[g];

  size_t[] calc(int mi) {
    struct qitem {
      size_t[] route;
      int rest;
    }

    size_t[][] r;

    auto qi = SList!qitem(qitem([s], mi));
    while (!qi.empty) {
      auto q = qi.front; qi.removeFront;
      foreach (np; n.iota) {
        if (aij[q.route.back][np] == 0 || q.route.canFind(np)) continue;
        auto nr = q.rest - aij[q.route.back][np];
        if (np == g && nr == 0) r ~= q.route ~ np;
        if (nr <= 0) continue;
        qi.insertFront(qitem(q.route ~ np, nr));
      }
    }

    return r.fold!min;
  }

  writeln(calc(mi).to!(string[]).join(" "));
}

struct Edge(T) {
  size_t v;
  T w;
}

T[] dijkstra(T)(T[][] aij, size_t s, T inf = 0) {
  auto n = aij.length;
  auto di = new T[](n);
  di[] = inf;

  auto qi = heapify!("a.w > b.w")(Array!(Edge!T)());

  void addNext(Edge!T e) {
    auto v = e.v, w = e.w;
    di[v] = w;
    foreach (i; n.iota)
      if (aij[v][i] != inf && di[i] == inf)
        qi.insert(Edge!T(i, w + aij[v][i]));
  }

  addNext(Edge!T(s, 0));
  while (!qi.empty) {
    auto e = qi.front; qi.removeFront;
    if (di[e.v] == inf) addNext(e);
  }

  return di;
}
0