現代の量子力学

主に精進の様子を記録する日記帳です

procedure of 拡張ダイクストラ

はじめに

ABC164Eで拡張ダイクストラが出題され、解けなかった。
拡張ダイクストラを実装するときに迷わないように手続きをまとめておく。

拡張ダイクストラとは

・頂点を増やしてダイクストラをすること。

僕のダイクストラ実装

//***********************************************************
// Dijkstra. You should include queue lib.
//***********************************************************

// status of edge
template <typename X>
struct Edge{ 
  int from; 
  int to;
  X cost;

  Edge() = default;

  Edge(int from, int to, X cost) : from(from), to(to), cost(cost) {}
};

// status of node
template <typename X>
struct Node{ 
  int idx; // index of node
  X dist; // distance from start node
  vector<Edge<X>> edge;
  
  Node() = default;

  explicit Node(int idx) : idx(idx) {}
  
};


template <typename X = int>
struct Status{ // entered priority_queue
  int idx;
  X dist;

  Status() = default;

  Status(int idx, X dist) : idx(idx), dist(dist) {}

  bool operator == (const Status& r) const {
    return (idx == r.idx && dist == r.dist);
  }

  bool operator != (const Status& r) const {
    return !(*this == r);
  }

  bool operator < (const Status& r) const {
    return dist > r.dist;
  }

  bool operator > (const Status& r) const {
    return dist < r.dist;
  }

};

template <typename X>
class Graph{
private:
  int n; // number of node
  int m; // number of edge
  vector<Node<X>> node; // node list

  const X inf = 1e+9; // initial value of dist

  void Init_Node() {
    rep(i,n) node.emplace_back(i);
  }  
public:
  explicit Graph(int n) : n(n) {
    Init_Node();
  }

  // no-weight
  Graph(int n, int m, vector<int> from, vector<int> to) : n(n), m(m) {
    Init_Node();
    rep(i,m) {
      add_edge(from[i], to[i]);
      add_edge(to[i], from[i]);      
    }
  }
  
  Graph(int n, int m, vector<int> from, vector<int> to, vector<X> cost) : n(n), m(m) {
    Init_Node();
    rep(i,m) {
      add_edge(from[i], to[i], cost[i]);
      //      add_edge(to[i], from[i], cost[i]);      
    }
  }

  void add_edge(int from, int to, X cost = 1) {
    node[from].edge.emplace_back(from, to, cost);
  }



  //*************************************
  // dijkstra
  // s is start node
  //*************************************
  void dijkstra(int s) { 
    // initalize d
    rep(i,n) node[i].dist = inf;
    node[s].dist = 0;
    
    priority_queue<Status<X>> pq;
    pq.emplace(s, 0); // pq have (node, shortest distance from start to the node)

    while( !pq.empty() ) {
      Status<X> now = pq.top(); pq.pop();
      int v = now.idx; // number of node
      X dis = now.dist; // distance of start from node "v"
      if(node[v].dist < dis) continue; 
      for(auto next: node[v].edge) {
    int w = next.to;
    X cos = next.cost;
    if(chmin(node[w].dist, node[v].dist + cos)) {
      pq.emplace(w, node[w].dist);
    }
      }
    }
  }


  X Get_d(int v) { return node[v].dist; }
  X Get_inf() { return inf; }
  
};

・かなり冗長な感じはする、、、、

拡張ダイクストラの手続き

・ABC164E を例にとってやってみる。

E - Two Currencies

1.Node(頂点)のメンバ変数を増やす。dist の次元を増やしたり、頂点固有の値を増やしたりする。
・どのように頂点を増やせば問題を解けるかを考える(DP tableの量子数を考えるときの感覚)。今回は、(頂点番号、持っている銀貨の枚数)という状態について最短経路をとっていけば事足りると考える。
・また、金貨→銀貨の変換レートは頂点固有の値なので追加する。

template <typename X = int>
struct Node{ // Status of node
  int idx; // index of node
  X dist[2501]; // 次元を追加
  vector<Edge<X>> edge;
  int rate; // 追加
  X time; // 追加
  
  Node() = default;
 
  explicit Node(int idx) : idx(idx) {}
  
  Node(int idx, int rate, X time) : idx(idx), rate(rate), time(time) {} // ここも追加
 
};

2.キューに入れるStatusのメンバ変数をいじる。基本的には、1.で増やした次元と同じように増やす。
・1.で持っている銀貨の枚数という次元を増やしたので、それを追加する。

template <typename X>
struct Status{
  int idx;
  X dist;
  int coin; // 追加
 
  Status() = default;
 
  Status(int idx, X dist, int coin) : idx(idx), dist(dist), coin(coin) {} //追加

// 以下省略
};

3.ダイクストラの中の遷移を書き直す。キューに入れるところ、distの次元をいじる。あと、増えた頂点への遷移や、遷移の条件などetc...
・キューに入れる変数やdistの次元を増やしたりする。
・同じ頂点内で金貨→銀貨という遷移を新たに入れる必要あり。

  void dijkstra(int s, int g) { 
    rep(i,n) rep(j,M+1) node[i].dist[j] = inf;
    chmin(g, M);
    node[s].dist[g] = 0;
    
    priority_queue<Status<X>> pq;
    pq.emplace(s, 0, g); // (node, distance, coin)
 
    while( !pq.empty() ) {
      Status<X> now = pq.top(); pq.pop();
      int v = now.idx; // number of node
      X dis = now.dist; // distance of start from node "v"
      int coin = now.coin;
      
      // exchange coin
      int rate = node[v].rate;
      X time = node[v].time;
      if(chmin(node[v].dist[min(M, coin + rate)], node[v].dist[coin] + time)) {
    pq.emplace(v, node[v].dist[min(M, coin + rate)], min(M, coin + rate));
      }
      
      if(node[v].dist[coin] < dis) continue; 
      for(auto next: node[v].edge) {
    int w = next.to;
    X cos = next.cost;
    int charge = next.charge;
    if(coin < charge) continue;
    if(chmin(node[w].dist[coin - charge], node[v].dist[coin] + cos)) {
      pq.emplace(w, node[w].dist[coin - charge], coin - charge);
    }
      }
    }
  }

4.Get_d関数。コンストラクタをいじる。
・コンストラクタは、頂点固有の変数も一緒に入れてしまう。
・Get_dは次元を増やすだけ。

以下提出コード

#include <iostream>
#include <algorithm>
#include <vector>
#include <utility>
#include <queue>
#define rep(i,n) for(int i=0;i<n;++i)
#define rep1(i,n) for(int i=1;i<=n;++i)
using namespace std;
template<class T>bool chmax(T &a, const T &b) { if(a < b){ a = b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if(a > b){ a = b; return 1; } return 0; }
typedef long long ll;
//***********************************************************
// Dijkstra
//***********************************************************
template <typename X = int>
struct Edge{ // status of edge
  int from; 
  int to;
  X cost;
  int charge;
  
  Edge() = default;

  Edge(int from, int to, X cost, int charge) : from(from), to(to), cost(cost), charge(charge) {}
};

template <typename X = int>
struct Node{ // Status of node
  int idx; // index of node
  X dist[2501]; // distance from start node
  vector<Edge<X>> edge;
  int rate;
  X time;
  
  Node() = default;

  explicit Node(int idx) : idx(idx) {}
  
  Node(int idx, int rate, X time) : idx(idx), rate(rate), time(time) {}

};

template <typename X>
struct Status{
  int idx;
  X dist;
  int coin;

  Status() = default;

  Status(int idx, X dist, int coin) : idx(idx), dist(dist), coin(coin) {}
  
  bool operator == (const Status& r) const {
    return (idx == r.idx && dist == r.dist);
  }

  bool operator != (const Status& r) const {
    return !(*this == r);
  }

  bool operator < (const Status& r) const { 
    return dist > r.dist;
  }

  bool operator > (const Status& r) const {
    return dist < r.dist;
  }
};

template <typename X = int>
class Graph{
private:
  int n; // number of node
  int m; // number of edge
  vector<Node<X>> node; // node list

  const X inf = 1e+17; // initial value of d
  int M = 2500;
  
public:
  explicit Graph(int n) : n(n) {
  }

  Graph(int n, int m, vector<int> from, vector<int> to, vector<X> cost, vector<int> charge, vector<int> rate, vector<X> time) : n(n), m(m) {
    Init_Node(rate, time);
    rep(i,m) {
      add_edge(from[i], to[i], cost[i], charge[i]);
      add_edge(to[i], from[i], cost[i], charge[i]);      
    }
  }

  void add_edge(int from, int to, X cost, int charge) {
    node[from].edge.emplace_back(from, to, cost, charge);
  }

  void Init_Node(vector<int> rate, vector<X> time) {
    rep(i,n) node.emplace_back(i, rate[i], time[i]);
  }
  
  
  //*************************************
  // dijkstra
  // s is start node
  //*************************************
  void dijkstra(int s, int g) { 
    rep(i,n) rep(j,M+1) node[i].dist[j] = inf;
    chmin(g, M);
    node[s].dist[g] = 0;
    
    priority_queue<Status<X>> pq;
    pq.emplace(s, 0, g); // (node, distance, coin)

    while( !pq.empty() ) {
      Status<X> now = pq.top(); pq.pop();
      int v = now.idx; // number of node
      X dis = now.dist; // distance of start from node "v"
      int coin = now.coin;
      
      // exchange coin
      int rate = node[v].rate;
      X time = node[v].time;
      if(chmin(node[v].dist[min(M, coin + rate)], node[v].dist[coin] + time)) {
    pq.emplace(v, node[v].dist[min(M, coin + rate)], min(M, coin + rate));
      }
      
      if(node[v].dist[coin] < dis) continue; 
      for(auto next: node[v].edge) {
    int w = next.to;
    X cos = next.cost;
    int charge = next.charge;
    if(coin < charge) continue;
    if(chmin(node[w].dist[coin - charge], node[v].dist[coin] + cos)) {
      pq.emplace(w, node[w].dist[coin - charge], coin - charge);
    }
      }
    }
  }


  X Get_d(int v, int coin) {
    //    if(d[start][goal] == inf) return -1
    return node[v].dist[coin];
  }
  
};


int main()
{
  int n,m,s; cin >> n >> m >> s;
  vector<int> u(m), v(m), a(m), c(n);
  vector<ll> b(m), d(n);
  rep(i,m) {
    cin >> u[i] >> v[i] >> a[i] >> b[i];
    u[i]--; v[i]--;
  }
  rep(i,n) cin >> c[i] >> d[i];
  
  Graph<ll> gp(n, m, u, v, b, a, c, d);
  gp.dijkstra(0, s);

  rep1(i,n-1) {
    ll res = 1e+17;
    rep(j,2501) {
      chmin(res, gp.Get_d(i, j));
    }
    cout << res << "\n";
  }
  
  return 0;
}

いろんな拡張ダイクストラ問題を解いてみた。

https://www.ioi-jp.org/camp/2007/2007-sp-tasks/2007-sp-day3_23.pdf#page=2

  1. (頂点番号、1つ前に訪れた頂点番号)にdistの次元を拡大。また、頂点に座標の情報を追加する。
  2. キューのメンバを変更。
  3. ダイクストラの遷移において、鋭角に曲がる遷移は禁止した。
  4. 諸々変更。

F - ヘビの JOI 君 (Snake JOI)

  1. (頂点番号、最後に出た頂点が暑いか寒いか、最後に暑いor寒い頂点から出て何分たったか)に次元拡大。頂点には部屋が暑いか寒いかを追加。
  2. ダイクストラの遷移において、条件を満たさない遷移は禁止した。

http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=1162&lang=ja

  1. (頂点番号、速度、1つ前にいた頂点番号)に拡大。
  2. ダイクストラの遷移において、速度は-1, +0, +1 の3パターン遷移する。制限速度を超えたり、Uターンしたりは禁止する。

G - 通学路

ABC164 E の類題
1. (頂点番号、持っている花の本数)に拡大。それぞれの頂点に存在する店で買える花束の本数と値段を頂点固有の値として追加。
3. ダイクストラの遷移において、頂点で花を買うパターンの遷移を追加する。

E - 会場への道

  1. (頂点番号、始点からの距離 mod 4、始点からの距離 mod 7)に拡大。
  2. ダイクストラの遷移で、上記の変数を素直に更新。ただし、ゴールしてから移動できないので、ゴールについたが、mod 4 != 0 かつ mod 7 != 0という状態は禁止する。

E - Hopscotch Addict

上の類題。
1. (頂点番号、始点からの距離 mod 3)に拡大。

おわりに

おわり