結果

問題 No.416 旅行会社
ユーザー hipokabahipokaba
提出日時 2016-09-12 03:02:04
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 643 ms / 4,000 ms
コード長 1,029 bytes
コンパイル時間 695 ms
コンパイル使用メモリ 81,740 KB
実行使用メモリ 25,652 KB
最終ジャッジ日時 2024-05-08 15:21:31
合計ジャッジ時間 7,826 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
15,592 KB
testcase_01 AC 3 ms
5,632 KB
testcase_02 AC 3 ms
5,760 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 3 ms
5,760 KB
testcase_05 AC 3 ms
5,888 KB
testcase_06 AC 3 ms
5,888 KB
testcase_07 AC 5 ms
5,760 KB
testcase_08 AC 9 ms
5,888 KB
testcase_09 AC 36 ms
7,040 KB
testcase_10 AC 303 ms
15,588 KB
testcase_11 AC 313 ms
15,488 KB
testcase_12 AC 309 ms
15,488 KB
testcase_13 AC 277 ms
15,616 KB
testcase_14 AC 643 ms
25,516 KB
testcase_15 AC 626 ms
25,644 KB
testcase_16 AC 627 ms
24,960 KB
testcase_17 AC 634 ms
25,652 KB
testcase_18 AC 630 ms
25,648 KB
testcase_19 AC 433 ms
20,736 KB
testcase_20 AC 450 ms
20,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <map>
#include <algorithm>

#define rep(i, n) for(int i = 0; i < (n); ++i)

using namespace std;

typedef pair<int, int> P;

struct E{
	int t, c;
};

int n, m, q;
map<P, int> k;
vector<E> g[100000];
int d[100000];

void make_graph(){
	for(auto& v: k){
		auto& p = v.first;
		int a = p.first - 1, b = p.second - 1;
		g[a].push_back({b, v.second});
		g[b].push_back({a, v.second});
	}
}

void dijkstra(){
	priority_queue<P> q;
	d[0] = m + 1;
	q.push(P(m + 1, 0));
	while(!q.empty()){
		P v = q.top();
		q.pop();
		if(d[v.second] > v.first){
			continue;
		}
		for(auto& e: g[v.second]){
			if(d[e.t] < min(v.first, e.c)){
				d[e.t] = min(v.first, e.c);
				q.push(P(d[e.t], e.t));
			}
		}
	}
}

int main(){
	cin >> n >> m >> q;
	rep(i, m){
		int a, b;
		cin >> a >> b;
		k[P(a, b)] = m + 1;
	}
	rep(i, q){
		int c, d;
		cin >> c >> d;
		k[P(c, d)] = i + 1;
	}

	make_graph();

	dijkstra();

	rep(i, n - 1){
		int k = d[i + 1];
		cout << (k != m + 1 ? k : -1) << endl;
	}
	return 0;
}
0