結果

問題 No.519 アイドルユニット
ユーザー snrnsidysnrnsidy
提出日時 2021-06-12 02:43:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 756 ms / 1,000 ms
コード長 718 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 200,576 KB
実行使用メモリ 69,120 KB
最終ジャッジ日時 2024-05-08 23:12:10
合計ジャッジ時間 10,223 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 756 ms
69,120 KB
testcase_01 AC 752 ms
68,864 KB
testcase_02 AC 215 ms
68,864 KB
testcase_03 AC 59 ms
68,864 KB
testcase_04 AC 49 ms
68,864 KB
testcase_05 AC 49 ms
68,864 KB
testcase_06 AC 49 ms
68,864 KB
testcase_07 AC 50 ms
68,864 KB
testcase_08 AC 49 ms
68,864 KB
testcase_09 AC 50 ms
68,992 KB
testcase_10 AC 51 ms
68,992 KB
testcase_11 AC 59 ms
68,864 KB
testcase_12 AC 49 ms
68,864 KB
testcase_13 AC 59 ms
68,864 KB
testcase_14 AC 59 ms
68,992 KB
testcase_15 AC 60 ms
68,992 KB
testcase_16 AC 59 ms
68,864 KB
testcase_17 AC 60 ms
68,864 KB
testcase_18 AC 59 ms
68,864 KB
testcase_19 AC 59 ms
68,992 KB
testcase_20 AC 59 ms
68,992 KB
testcase_21 AC 59 ms
68,992 KB
testcase_22 AC 59 ms
68,864 KB
testcase_23 AC 58 ms
68,992 KB
testcase_24 AC 89 ms
68,864 KB
testcase_25 AC 89 ms
68,992 KB
testcase_26 AC 91 ms
68,864 KB
testcase_27 AC 90 ms
68,864 KB
testcase_28 AC 89 ms
68,992 KB
testcase_29 AC 750 ms
68,992 KB
testcase_30 AC 754 ms
68,864 KB
testcase_31 AC 753 ms
68,864 KB
testcase_32 AC 753 ms
68,992 KB
testcase_33 AC 50 ms
68,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int board[25][25];
int dp[1 << 24];

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

	int n;

	cin >> n;

	for (int i = 0; i < n; i++)
	{
		for (int j = 0; j < n; j++)
		{
			cin >> board[i][j];
		}
	}
	memset(dp, -1, sizeof(dp));
	dp[0] = 0;

	for (int i = 0; i < (1 << n); i++)
	{
		if (__builtin_popcount(i) % 2 == 1) continue;
		for (int j = 0; j < n; j++)
		{
			if ((i & (1 << j)) == 0)
			{
				for (int k = j + 1; k < n; k++)
				{
					if ((i & (1 << k)) == 0)
					{
						int mask = i + (1 << j) + (1 << k);
						dp[mask] = max(dp[mask], dp[i] + board[j][k]);
					}
				}
				break;
			}
		}
	}

	cout << dp[(1 << n) - 1] << '\n';

	return 0;
}
0