結果

問題 No.519 アイドルユニット
ユーザー hanorverhanorver
提出日時 2017-05-29 22:59:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 610 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 144,128 KB
最終ジャッジ日時 2024-09-21 18:14:31
合計ジャッジ時間 12,529 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 391 ms
44,376 KB
testcase_03 AC 60 ms
12,800 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 33 ms
10,880 KB
testcase_10 AC 39 ms
11,136 KB
testcase_11 AC 61 ms
12,800 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 60 ms
12,672 KB
testcase_14 AC 62 ms
12,800 KB
testcase_15 AC 61 ms
12,800 KB
testcase_16 AC 62 ms
12,800 KB
testcase_17 AC 62 ms
12,672 KB
testcase_18 AC 61 ms
12,800 KB
testcase_19 AC 60 ms
12,672 KB
testcase_20 AC 61 ms
12,800 KB
testcase_21 AC 63 ms
12,928 KB
testcase_22 AC 62 ms
12,800 KB
testcase_23 AC 61 ms
12,800 KB
testcase_24 AC 132 ms
18,816 KB
testcase_25 AC 135 ms
19,072 KB
testcase_26 AC 134 ms
19,112 KB
testcase_27 AC 134 ms
19,072 KB
testcase_28 AC 135 ms
19,184 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def solve():
    n = int(sys.stdin.readline())
    A = [tuple(map(int, sys.stdin.readline().split())) for i in [0]*n]


    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)
                if dp[t] < dp[i] + A[j][k]:
                    dp[t] = dp[i] + A[j][k]
            break

    return dp[-1]


print(solve())
0