結果

問題 No.519 アイドルユニット
ユーザー しらっ亭しらっ亭
提出日時 2017-05-29 22:24:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 1,000 ms
コード長 562 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 206,880 KB
最終ジャッジ日時 2024-10-03 03:55:59
合計ジャッジ時間 3,330 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
206,848 KB
testcase_01 AC 151 ms
206,880 KB
testcase_02 AC 77 ms
100,736 KB
testcase_03 AC 48 ms
65,408 KB
testcase_04 AC 31 ms
51,968 KB
testcase_05 AC 30 ms
51,584 KB
testcase_06 AC 31 ms
51,712 KB
testcase_07 AC 33 ms
52,096 KB
testcase_08 AC 36 ms
59,392 KB
testcase_09 AC 44 ms
63,104 KB
testcase_10 AC 46 ms
64,512 KB
testcase_11 AC 46 ms
65,536 KB
testcase_12 AC 33 ms
51,840 KB
testcase_13 AC 48 ms
65,664 KB
testcase_14 AC 47 ms
66,048 KB
testcase_15 AC 46 ms
65,792 KB
testcase_16 AC 49 ms
65,664 KB
testcase_17 AC 48 ms
65,536 KB
testcase_18 AC 49 ms
66,304 KB
testcase_19 AC 49 ms
65,536 KB
testcase_20 AC 46 ms
66,048 KB
testcase_21 AC 49 ms
65,536 KB
testcase_22 AC 47 ms
66,048 KB
testcase_23 AC 47 ms
65,408 KB
testcase_24 AC 52 ms
73,088 KB
testcase_25 AC 52 ms
72,704 KB
testcase_26 AC 52 ms
73,216 KB
testcase_27 AC 53 ms
72,832 KB
testcase_28 AC 51 ms
73,088 KB
testcase_29 AC 158 ms
206,464 KB
testcase_30 AC 153 ms
206,680 KB
testcase_31 AC 149 ms
206,464 KB
testcase_32 AC 150 ms
206,592 KB
testcase_33 AC 31 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    A = []

    for i in range(n):
        A.append(list(map(int, input().split())))

    dp = [-1] * (1 << n)
    dp[0] = 0

    for i in range(1 << n):
        if dp[i] < 0:
            continue
        for j in range(n):
            if i & (1 << j):
                continue
            for k in range(j + 1, n):
                if i & (1 << k):
                    continue
                t = i | (1 << j) | (1 << k)
                dp[t] = max(dp[t], dp[i] + A[j][k])
            break

    return dp[-1]


print(solve())
0