結果

問題 No.160 最短経路のうち辞書順最小
ユーザー te-shte-sh
提出日時 2016-09-14 14:32:12
言語 D
(dmd 2.106.1)
結果
MLE  
実行時間 -
コード長 1,916 bytes
コンパイル時間 1,163 ms
コンパイル使用メモリ 126,336 KB
実行使用メモリ 812,956 KB
最終ジャッジ日時 2023-09-02 22:08:25
合計ジャッジ時間 7,566 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,372 KB
testcase_01 AC 1 ms
4,368 KB
testcase_02 AC 2 ms
4,372 KB
testcase_03 AC 1 ms
4,368 KB
testcase_04 AC 6 ms
4,372 KB
testcase_05 AC 11 ms
4,476 KB
testcase_06 AC 14 ms
4,504 KB
testcase_07 MLE -
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.array, std.container, std.range, std.bitmanip;
import std.numeric, std.math, std.bigint, std.random, core.bitop;
import std.string, std.regex, std.conv, std.stdio, std.typecons;

void main()
{
  auto rd1 = readln.split.map!(to!size_t);
  auto n = rd1[0], m = rd1[1], s = rd1[2], t = rd1[3];

  auto g = new Graph!int(n);
  foreach (_; 0..m) {
    auto rd2 = readln.split;
    auto a = rd2[0].to!size_t, b = rd2[1].to!size_t, c = rd2[2].to!int;
    g[a, b] = g[b, a] = c;
  }

  writeln(g.dijkstra(s, t).map!(to!string).join(" "));
}

class Mat2(T) {
  size_t n; // size
  T[][] v; // values

  this(size_t n) {
    this.n = n;
    v = new T[][](n, n);
  }

  T opIndex(size_t i, size_t j) { return v[i][j]; }
  T opIndexAssign(T w, size_t i, size_t j) { v[i][j] = w; return w; }
}

class Mat2HasInf(T) : Mat2!T {
  T inf; // infinite

  this(size_t n, T inf = -1) {
    super(n);
    this.inf = inf;
  }

  bool isInf(size_t i, size_t j) { return v[i][j] == inf; }
}

class Graph(T) : Mat2HasInf!T {
  this(size_t n, T inf = -1) {
    super(n, inf);

    foreach (i; 0..n) v[i][] = inf;
    foreach (i; 0..n) v[i][i] = 0;
  }

  size_t[] dijkstra(size_t s, size_t g)
  {
    struct qitem {
      size_t v;
      T w;
      size_t[] r;

      int opCmp(qitem rhs) {
        if (w == rhs.w)
          return r == rhs.r ? 0 : (r < rhs.r ? -1 : 1);
        else
          return w < rhs.w ? -1 : 1;
      }
    }

    auto qi = heapify!("a > b")(Array!qitem());
    auto visited = new bool[](n);

    void addNext(qitem q) {
      auto v = q.v, w = q.w, r = q.r;
      visited[v] = true;
      foreach (i; 0..n)
        if (!isInf(v, i) && !visited[i])
          qi.insert(qitem(i, w + this[v, i], r ~ i));
    }

    addNext(qitem(s, 0, [s]));
    while (!qi.empty) {
      auto q = qi.front;
      qi.removeFront;
      if (q.v == g) return q.r;
      addNext(q);
    }

    return [];
  }
}
0