結果

問題 No.519 アイドルユニット
ユーザー sue_charosue_charo
提出日時 2017-06-02 12:32:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 1,000 ms
コード長 968 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 209,996 KB
最終ジャッジ日時 2024-10-03 04:00:15
合計ジャッジ時間 5,130 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 196 ms
209,996 KB
testcase_01 AC 198 ms
209,484 KB
testcase_02 AC 120 ms
111,016 KB
testcase_03 AC 80 ms
75,904 KB
testcase_04 AC 61 ms
67,072 KB
testcase_05 AC 61 ms
67,072 KB
testcase_06 AC 63 ms
67,072 KB
testcase_07 AC 63 ms
67,072 KB
testcase_08 AC 67 ms
69,888 KB
testcase_09 AC 75 ms
73,088 KB
testcase_10 AC 77 ms
74,752 KB
testcase_11 AC 77 ms
75,904 KB
testcase_12 AC 61 ms
66,688 KB
testcase_13 AC 78 ms
76,160 KB
testcase_14 AC 79 ms
75,904 KB
testcase_15 AC 77 ms
76,032 KB
testcase_16 AC 78 ms
76,288 KB
testcase_17 AC 79 ms
75,648 KB
testcase_18 AC 79 ms
75,648 KB
testcase_19 AC 78 ms
75,648 KB
testcase_20 AC 80 ms
76,160 KB
testcase_21 AC 79 ms
76,160 KB
testcase_22 AC 76 ms
75,904 KB
testcase_23 AC 78 ms
75,520 KB
testcase_24 AC 90 ms
83,328 KB
testcase_25 AC 85 ms
83,072 KB
testcase_26 AC 85 ms
83,200 KB
testcase_27 AC 86 ms
82,816 KB
testcase_28 AC 88 ms
83,336 KB
testcase_29 AC 200 ms
209,644 KB
testcase_30 AC 199 ms
209,792 KB
testcase_31 AC 196 ms
209,408 KB
testcase_32 AC 195 ms
209,408 KB
testcase_33 AC 63 ms
67,072 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