結果

問題 No.859 路線A、路線B、路線C
ユーザー MarcusAureliusAntoninusMarcusAureliusAntoninus
提出日時 2019-08-09 22:11:14
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 1,434 bytes
コンパイル時間 2,318 ms
コンパイル使用メモリ 208,936 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-26 18:10:39
合計ジャッジ時間 3,256 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 1 ms
4,384 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int main()
{
	int64_t x[3];
	for (int i{}; i < 3; i++) scanf("%lld", x + i);
	using pi = std::pair<int64_t, int>;
	using vpi = std::vector<std::pair<int64_t, int>>;
	using vvpi = std::vector<vpi>;
	vvpi edges(8);
	for (int i{}; i < 3; i++)
		for (int j{1}; j <= 2; j++)
		{
			int diff{(i + j) % 3};
			edges[1 + i].push_back({1ll, 1 + diff});
			edges[4 + i].push_back({1ll, 4 + diff});
		}
	
	for (int i{}; i < 3; i++)
	{
		edges[1 + i].push_back({x[i] - 1, 4 + i});
		edges[4 + i].push_back({x[i] - 1, 1 + i});
	}
	char S[2];
	int64_t index[2];
	for (int i{}; i < 2; i++)
		scanf(" %c%lld", S + i, index + i);
	edges[0].push_back({index[0] - 1, 1 + S[0] - 'A'});
	edges[0].push_back({x[S[0] - 'A'] - index[0], 4 + S[0] - 'A'});
	edges[1 + S[1] - 'A'].push_back({index[1] - 1, 7});
	edges[4 + S[1] - 'A'].push_back({x[S[1] - 'A'] - index[1], 7}); 

	if (S[0] == S[1]) edges[0].push_back({std::abs(index[1] - index[0]), 7});

	std::priority_queue<pi, std::vector<pi>, std::greater<pi>> dij;
	std::vector<int64_t> dist(8, 1ll << 60);
	dij.push({0, 0});
	dist[0] = 0;
	while (!dij.empty())
	{
		auto now{dij.top()};
		dij.pop();
		if (now.first > dist[now.second]) continue;
		for (auto& e: edges[now.second])
		{
			pi next{now.first + e.first, e.second};
			if (next.first >= dist[next.second]) continue;
			dist[next.second] = next.first;
			dij.push(next);
		}
	}
	printf("%lld\n", dist[7]);

	return 0;
}
0