結果

問題 No.698 ペアでチームを作ろう
ユーザー buno15buno15
提出日時 2020-10-22 00:42:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 88 ms / 1,000 ms
コード長 860 bytes
コンパイル時間 2,525 ms
コンパイル使用メモリ 76,920 KB
実行使用メモリ 38,068 KB
最終ジャッジ日時 2024-07-21 09:11:44
合計ジャッジ時間 4,376 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,260 KB
testcase_01 AC 51 ms
36,120 KB
testcase_02 AC 52 ms
36,296 KB
testcase_03 AC 51 ms
36,672 KB
testcase_04 AC 61 ms
37,032 KB
testcase_05 AC 88 ms
37,884 KB
testcase_06 AC 85 ms
37,572 KB
testcase_07 AC 85 ms
38,068 KB
testcase_08 AC 76 ms
37,328 KB
testcase_09 AC 76 ms
38,004 KB
testcase_10 AC 84 ms
37,824 KB
testcase_11 AC 74 ms
37,700 KB
testcase_12 AC 76 ms
37,588 KB
testcase_13 AC 77 ms
37,340 KB
testcase_14 AC 87 ms
37,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {

	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		int n = Integer.parseInt(br.readLine());

		long a[] = new long[n];

		String str[] = br.readLine().split(" ");
		for (int i = 0; i < n; i++) {
			a[i] = Long.parseLong(str[i]);
		}

		long dp[] = new long[1 << n];

		dp[0] = 0;

		for (int bit = 0; bit < (1 << n); bit++) {
			for (int i = 0; i < n; i++) {
				if (((bit & (1 << i)) == 0))
					continue;

				for (int j = i + 1; j < n; j++) {
					if (((bit & (1 << j)) == 0))
						continue;

					long t = dp[bit - (1 << i) - (1 << j)] + (a[i] ^ a[j]);
					dp[bit] = Math.max(dp[bit], t);
				}
			}
		}

		System.out.println(dp[(1 << n) - 1]);
	}
}
0