結果

問題 No.519 アイドルユニット
ユーザー snrnsidysnrnsidy
提出日時 2021-06-12 02:43:55
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 733 ms / 1,000 ms
コード長 718 bytes
コンパイル時間 2,033 ms
コンパイル使用メモリ 201,032 KB
実行使用メモリ 69,136 KB
最終ジャッジ日時 2024-12-15 07:16:20
合計ジャッジ時間 9,192 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 723 ms
68,928 KB
testcase_01 AC 730 ms
68,856 KB
testcase_02 AC 187 ms
69,016 KB
testcase_03 AC 28 ms
68,844 KB
testcase_04 AC 19 ms
68,920 KB
testcase_05 AC 19 ms
68,976 KB
testcase_06 AC 19 ms
69,008 KB
testcase_07 AC 19 ms
69,008 KB
testcase_08 AC 19 ms
68,856 KB
testcase_09 AC 19 ms
68,888 KB
testcase_10 AC 21 ms
68,948 KB
testcase_11 AC 28 ms
69,108 KB
testcase_12 AC 18 ms
68,884 KB
testcase_13 AC 28 ms
69,068 KB
testcase_14 AC 29 ms
69,024 KB
testcase_15 AC 28 ms
69,016 KB
testcase_16 AC 28 ms
69,044 KB
testcase_17 AC 28 ms
68,924 KB
testcase_18 AC 28 ms
68,896 KB
testcase_19 AC 28 ms
68,976 KB
testcase_20 AC 29 ms
69,052 KB
testcase_21 AC 28 ms
68,984 KB
testcase_22 AC 28 ms
69,036 KB
testcase_23 AC 28 ms
69,072 KB
testcase_24 AC 58 ms
69,068 KB
testcase_25 AC 58 ms
69,020 KB
testcase_26 AC 58 ms
68,880 KB
testcase_27 AC 58 ms
69,136 KB
testcase_28 AC 58 ms
68,992 KB
testcase_29 AC 722 ms
68,864 KB
testcase_30 AC 733 ms
69,072 KB
testcase_31 AC 729 ms
68,856 KB
testcase_32 AC 727 ms
68,768 KB
testcase_33 AC 19 ms
68,844 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