結果

問題 No.416 旅行会社
ユーザー koba-e964koba-e964
提出日時 2016-08-27 23:44:47
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,673 bytes
コンパイル時間 957 ms
コンパイル使用メモリ 102,592 KB
実行使用メモリ 20,484 KB
最終ジャッジ日時 2024-04-26 07:04:34
合計ジャッジ時間 9,277 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
12,544 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 328 ms
13,056 KB
testcase_11 AC 311 ms
12,928 KB
testcase_12 AC 319 ms
13,056 KB
testcase_13 AC 277 ms
12,544 KB
testcase_14 AC 696 ms
20,356 KB
testcase_15 AC 738 ms
20,360 KB
testcase_16 AC 715 ms
20,484 KB
testcase_17 AC 737 ms
20,360 KB
testcase_18 AC 737 ms
20,404 KB
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;
typedef long long int ll;
typedef vector<int> VI;
typedef vector<ll> VL;
typedef pair<int, int> PI;
const ll mod = 1e9 + 7;

const int N = 100010;
VI edges[N];

/**
 * Dijkstra's algorithm.
 * First, call add_edge() to add edges.
 * Second, call solve() to calculate the length of the shortest path from source to each vertex.
 * Header requirement: algorithm, queue, vector
 * Verified by AtCoder ARC026-C (http://arc026.contest.atcoder.jp/submissions/604231)
 */
 template<class Len = int>
class Dijkstra {
private:
  int n;
  std::vector<std::vector<std::pair<int, Len> > > edges;
public:
  /**
   * n: the number of vertices
   */
  Dijkstra(int n) : n(n), edges(n) {}
  /*
   * from: the source of edge to add
   * to: the target of edge to add
   * cost: the cost of edge to add
   */
  void add_edge(int from, int to, Len cost) {
    edges[from].push_back(std::pair<int, Len>(to, cost));
  }
  /*
   * This function returns an array consisting of the distances from vertex source.
   */
   std::vector<Len> solve(int source,int q) {
    const Len inf = 0;
    typedef std::pair<Len, int> pi;
    std::vector<Len> d(n, inf);
    std::priority_queue<pi, std::vector<pi>, std::less<pi> > que;
    que.push(pi(q, source));
    while (!que.empty()) {
      pi p = que.top(); que.pop();
      int idx = p.second;
      if (d[idx] >= p.first) {
	continue;
      }
      d[idx] = p.first;
      for(int j = 0; j < edges[idx].size(); ++j) {
	que.push(pi(min(p.first, edges[idx][j].second), edges[idx][j].first));
      }
    }
    return d;
  }
};
int main(void){
  int n, m, q;
  cin >> n >> m >> q;
  Dijkstra<int> dijk(n);
  set<PI> e;
  REP(i, 0, m) {
    int a, b;
    cin >> a >> b;
    a--, b--;
    e.insert(PI(a, b));
  }
  REP(i, 0, q) {
    int c, d;
    cin >> c >> d;
    c--, d--;
    dijk.add_edge(c, d, i);
    dijk.add_edge(d, c, i);
    e.erase(PI(c, d));
  }
  for (set<PI>::iterator it = e.begin(); it != e.end(); ++it) {
    int a = it->first;
    int b = it->second;
    dijk.add_edge(a, b, q);
    dijk.add_edge(b, a, q);
  }
  VI res = dijk.solve(0, q);
  REP(i, 0, n - 1) {
    int r = res[i + 1] == q ? -1 : (res[i + 1] + 1);
    cout << r << endl;
  }
}
0