結果

問題 No.416 旅行会社
ユーザー pekempeypekempey
提出日時 2016-08-27 02:42:33
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 513 ms / 4,000 ms
コード長 996 bytes
コンパイル時間 2,900 ms
コンパイル使用メモリ 173,400 KB
実行使用メモリ 161,656 KB
最終ジャッジ日時 2024-05-08 15:06:39
合計ジャッジ時間 7,355 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
84,964 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 19 ms
11,648 KB
testcase_10 AC 195 ms
85,068 KB
testcase_11 AC 182 ms
84,972 KB
testcase_12 AC 185 ms
85,080 KB
testcase_13 AC 126 ms
85,180 KB
testcase_14 AC 511 ms
161,656 KB
testcase_15 AC 511 ms
161,580 KB
testcase_16 AC 500 ms
161,624 KB
testcase_17 AC 510 ms
161,560 KB
testcase_18 AC 513 ms
161,540 KB
testcase_19 AC 324 ms
83,036 KB
testcase_20 AC 326 ms
82,996 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:20:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |                 scanf("%d %d", &a, &b);
      |                 ~~~~~^~~~~~~~~~~~~~~~~
main.cpp:28:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   28 |                 scanf("%d %d", &c, &d);
      |                 ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

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

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] = Q + 1;
		g[b][a] = Q + 1;
	}

	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;
	}

	vector<queue<int>> q(Q + 2);
	q[Q + 1].push(0);

	vector<int> dist(n);
	dist[0] = Q + 1;

	for (int i = Q + 1; i >= 1; i--) {
		while (!q[i].empty()) {
			int curr = q[i].front(); q[i].pop();

			if (i < 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[dist[next]].push(next);
				}
			}
		}
	}

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