結果

問題 No.845 最長の切符
ユーザー snrnsidysnrnsidy
提出日時 2021-06-23 00:18:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 370 ms / 3,000 ms
コード長 990 bytes
コンパイル時間 1,975 ms
コンパイル使用メモリ 204,392 KB
実行使用メモリ 7,636 KB
最終ジャッジ日時 2024-06-23 19:52:25
合計ジャッジ時間 4,236 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,568 KB
testcase_01 AC 4 ms
7,404 KB
testcase_02 AC 4 ms
7,548 KB
testcase_03 AC 4 ms
7,496 KB
testcase_04 AC 4 ms
7,572 KB
testcase_05 AC 3 ms
7,532 KB
testcase_06 AC 3 ms
7,516 KB
testcase_07 AC 4 ms
7,404 KB
testcase_08 AC 4 ms
7,420 KB
testcase_09 AC 4 ms
7,432 KB
testcase_10 AC 5 ms
7,460 KB
testcase_11 AC 3 ms
7,580 KB
testcase_12 AC 4 ms
7,604 KB
testcase_13 AC 3 ms
7,436 KB
testcase_14 AC 4 ms
7,636 KB
testcase_15 AC 18 ms
7,440 KB
testcase_16 AC 370 ms
7,468 KB
testcase_17 AC 89 ms
7,476 KB
testcase_18 AC 58 ms
7,628 KB
testcase_19 AC 18 ms
7,544 KB
testcase_20 AC 85 ms
7,520 KB
testcase_21 AC 45 ms
7,636 KB
testcase_22 AC 78 ms
7,508 KB
testcase_23 AC 20 ms
7,632 KB
testcase_24 AC 302 ms
7,576 KB
testcase_25 AC 4 ms
7,392 KB
testcase_26 AC 5 ms
7,584 KB
testcase_27 AC 4 ms
7,596 KB
testcase_28 AC 6 ms
7,420 KB
testcase_29 AC 4 ms
7,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int dp[1 << 16][16];
vector <pair<int, int>> adj[16];
int n, m, a, b, c;

int main(void)
{
	cin.tie(0);
	ios::sync_with_stdio(false);
	
	cin >> n >> m;

	for (int i = 0; i < m; i++)
	{
		cin >> a >> b >> c;
		a -= 1;
		b -= 1;
		adj[a].push_back(make_pair(b, c));
		adj[b].push_back(make_pair(a, c));
	}

	for (int i = 0; i < (1 << 16); i++)
	{
		for (int j = 0; j < 16; j++)
		{
			dp[i][j] = -1e9;
		}
	}

	for (int i = 0; i < n; i++)
	{
		dp[1 << i][i] = 0;
	}

	for (int i = 0; i < (1 << n); i++)
	{
		for (int j = 0; j < n; j++)
		{
			if (dp[i][j] <= -1e9) continue;
			for (auto it : adj[j])
			{
				int k = it.first;
				int cost = it.second;
				if ((i & (1 << k))) continue;
				int mask = i + (1 << k);
				dp[mask][k] = max(dp[mask][k], dp[i][j] + cost);
			}
		}
	}

	int res = 0;

	for (int i = 0; i < (1 << n); i++)
	{
		for (int j = 0; j < n; j++)
		{
			res = max(res, dp[i][j]);
		}
	}

	cout << res << '\n';

	return 0;
}
0