結果

問題 No.416 旅行会社
ユーザー pekempeypekempey
提出日時 2016-08-27 01:21:50
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 377 ms / 4,000 ms
コード長 978 bytes
コンパイル時間 1,540 ms
コンパイル使用メモリ 175,936 KB
実行使用メモリ 28,388 KB
最終ジャッジ日時 2024-05-08 15:05:05
合計ジャッジ時間 5,926 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
17,792 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 13 ms
5,376 KB
testcase_10 AC 105 ms
17,664 KB
testcase_11 AC 102 ms
17,900 KB
testcase_12 AC 105 ms
17,920 KB
testcase_13 AC 68 ms
17,792 KB
testcase_14 AC 369 ms
28,260 KB
testcase_15 AC 365 ms
28,256 KB
testcase_16 AC 352 ms
27,876 KB
testcase_17 AC 368 ms
28,264 KB
testcase_18 AC 377 ms
28,388 KB
testcase_19 AC 235 ms
22,948 KB
testcase_20 AC 231 ms
23,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:22:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   22 |                 scanf("%d %d", &a, &b);
      |                 ~~~~~^~~~~~~~~~~~~~~~~
main.cpp:30:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   30 |                 scanf("%d %d", &c, &d);
      |                 ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int inf = 1e9;

template<class T1, class T2>
bool chmax(T1 &a, T2 b) {
	if (a < b) {
		a = b;
		return true;
	}
	return false;
}

int main() {
	int n, m, Q;
	cin >> n >> m >> Q;

	vector<map<int, int>> g(n);
	for (int i = 0; i < m; i++) {
		int a, b;
		scanf("%d %d", &a, &b);
		a--; b--;
		g[a][b] = inf;
		g[b][a] = inf;
	}

	for (int i = 0; i < Q; i++) {
		int c, d;
		scanf("%d %d", &c, &d);
		c--; d--;
		g[c][d] = i + 1;
		g[d][c] = i + 1;
	}

	priority_queue<pair<int, int>> q;
	q.emplace(inf, 0);

	vector<int> dist(n);
	dist[0] = inf;

	while (!q.empty()) {
		int d, curr;
		tie(d, curr) = q.top(); q.pop();

		if (d < dist[curr]) continue;

		for (auto kv : g[curr]) {
			int next = kv.first;
			int cost = kv.second;

			if (chmax(dist[next], min(dist[curr], cost))) {
				q.emplace(dist[next], next);
			}
		}
	}

	for (int i = 1; i < n; i++) {
		if (dist[i] == inf) dist[i] = -1;
		printf("%d\n", dist[i]);
	}
}
0