結果

問題 No.519 アイドルユニット
ユーザー sue_charosue_charo
提出日時 2017-06-02 12:32:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 968 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 144,896 KB
最終ジャッジ日時 2024-09-21 22:09:23
合計ジャッジ時間 14,616 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 475 ms
45,184 KB
testcase_03 AC 74 ms
13,696 KB
testcase_04 AC 37 ms
11,520 KB
testcase_05 AC 37 ms
11,520 KB
testcase_06 AC 37 ms
11,648 KB
testcase_07 AC 37 ms
11,520 KB
testcase_08 AC 39 ms
11,520 KB
testcase_09 AC 40 ms
11,648 KB
testcase_10 AC 49 ms
12,032 KB
testcase_11 AC 75 ms
13,696 KB
testcase_12 AC 37 ms
11,520 KB
testcase_13 AC 75 ms
13,440 KB
testcase_14 AC 75 ms
13,568 KB
testcase_15 AC 75 ms
13,696 KB
testcase_16 AC 75 ms
13,696 KB
testcase_17 AC 75 ms
13,696 KB
testcase_18 AC 75 ms
13,568 KB
testcase_19 AC 73 ms
13,440 KB
testcase_20 AC 75 ms
13,696 KB
testcase_21 AC 76 ms
13,696 KB
testcase_22 AC 75 ms
13,696 KB
testcase_23 AC 76 ms
13,696 KB
testcase_24 AC 162 ms
19,712 KB
testcase_25 AC 164 ms
20,096 KB
testcase_26 AC 165 ms
19,840 KB
testcase_27 AC 166 ms
19,840 KB
testcase_28 AC 165 ms
19,968 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 36 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
import array, bisect, collections, copy, heapq, itertools, math, random, re, string, sys, time
sys.setrecursionlimit(10 ** 7)
INF = 10 ** 20
MOD = 10 ** 9 + 7


def II(): return int(input())
def ILI(): return list(map(int, input().split()))
def IAI(LINE): return [ILI() for __ in range(LINE)]
def IDI(): return {key: value for key, value in ILI()}


def read():
    n = II()
    F = IAI(n)
    return (n, F)


def solve(n, F):
    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] + F[j][k])
            break

    return dp[-1]


def main():
    params = read()
    print(solve(*params))


if __name__ == "__main__":
    main()
0