結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 375 ms
44,160 KB
testcase_03 AC 57 ms
12,672 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 34 ms
11,008 KB
testcase_11 AC 54 ms
12,800 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 55 ms
12,672 KB
testcase_14 AC 56 ms
12,928 KB
testcase_15 AC 54 ms
12,672 KB
testcase_16 AC 55 ms
12,928 KB
testcase_17 AC 55 ms
12,672 KB
testcase_18 AC 54 ms
12,800 KB
testcase_19 AC 54 ms
12,672 KB
testcase_20 AC 55 ms
12,928 KB
testcase_21 AC 57 ms
12,672 KB
testcase_22 AC 56 ms
12,800 KB
testcase_23 AC 56 ms
12,928 KB
testcase_24 AC 123 ms
18,944 KB
testcase_25 AC 125 ms
19,072 KB
testcase_26 AC 127 ms
19,092 KB
testcase_27 AC 122 ms
18,944 KB
testcase_28 AC 124 ms
19,200 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def solve():
    n = int(input())
    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