結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー 萩3萩3
提出日時 2021-04-30 22:58:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 842 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,132 KB
最終ジャッジ日時 2024-07-19 02:46:10
合計ジャッジ時間 13,158 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 35 ms
51,968 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 38 ms
52,224 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 42 ms
57,728 KB
testcase_14 AC 51 ms
61,824 KB
testcase_15 AC 50 ms
61,952 KB
testcase_16 AC 45 ms
60,160 KB
testcase_17 AC 49 ms
61,952 KB
testcase_18 AC 40 ms
57,472 KB
testcase_19 AC 53 ms
63,104 KB
testcase_20 AC 49 ms
62,080 KB
testcase_21 AC 42 ms
57,600 KB
testcase_22 AC 52 ms
62,336 KB
testcase_23 AC 105 ms
76,160 KB
testcase_24 AC 234 ms
76,288 KB
testcase_25 AC 529 ms
78,132 KB
testcase_26 AC 58 ms
68,480 KB
testcase_27 AC 55 ms
65,792 KB
testcase_28 AC 533 ms
77,796 KB
testcase_29 AC 83 ms
75,888 KB
testcase_30 AC 106 ms
76,168 KB
testcase_31 AC 105 ms
75,648 KB
testcase_32 AC 65 ms
74,112 KB
testcase_33 AC 525 ms
77,740 KB
testcase_34 AC 539 ms
77,588 KB
testcase_35 AC 520 ms
77,696 KB
testcase_36 AC 534 ms
77,824 KB
testcase_37 AC 519 ms
77,644 KB
testcase_38 AC 522 ms
77,888 KB
testcase_39 AC 533 ms
77,824 KB
testcase_40 AC 535 ms
77,824 KB
testcase_41 AC 528 ms
77,784 KB
testcase_42 AC 518 ms
77,624 KB
testcase_43 AC 39 ms
51,968 KB
testcase_44 AC 527 ms
77,908 KB
testcase_45 AC 36 ms
51,840 KB
testcase_46 AC 541 ms
77,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def resolve():
    inp = int2d()
    n = inp[0][0]
    scores = inp[1]
    graph = inp[2:]
    dp = [0 for _ in range(1<<n)]
    result = (-1,None)#maxscore, bit

    for bit in range(1<<n):
        for vertex in range(n):
            if not(bit & 1<<vertex): continue
            prebit = bit ^ 1<<vertex

            score = dp[prebit] + scores[vertex]
            for shift in range(n):
                if prebit & 1<<shift:
                    score += graph[shift][vertex]

            dp[bit] = score
            if result[0] < score:
                result = (score, bit)

    l = []
    for i in range(n):
        if result[1] & 1<<i:
            l.append(i+1)

    print(result[0])
    print(*l)
    
def str1d():return sys.stdin.read().splitlines()
def int2d():return [list(map(int,s.split())) for s in str1d()]
resolve()
0