結果

問題 No.1284 Flip Game
ユーザー rlangevinrlangevin
提出日時 2023-02-05 23:26:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 956 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 115,116 KB
最終ジャッジ日時 2024-07-04 08:45:52
合計ジャッジ時間 5,454 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 81 ms
71,936 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 37 ms
52,480 KB
testcase_09 AC 43 ms
59,136 KB
testcase_10 AC 47 ms
59,136 KB
testcase_11 AC 57 ms
66,304 KB
testcase_12 AC 57 ms
66,688 KB
testcase_13 AC 64 ms
70,016 KB
testcase_14 AC 65 ms
70,144 KB
testcase_15 AC 74 ms
73,856 KB
testcase_16 AC 71 ms
74,112 KB
testcase_17 AC 142 ms
85,568 KB
testcase_18 AC 138 ms
85,248 KB
testcase_19 AC 412 ms
114,816 KB
testcase_20 AC 152 ms
85,500 KB
testcase_21 AC 148 ms
85,504 KB
testcase_22 AC 149 ms
85,504 KB
testcase_23 AC 432 ms
114,816 KB
testcase_24 AC 471 ms
115,116 KB
testcase_25 AC 428 ms
114,872 KB
testcase_26 AC 413 ms
114,816 KB
testcase_27 AC 467 ms
114,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
C = []
for i in range(N):
    C.append(list(map(int, input().split())))
    
inf = 10 ** 18
N2 = 1 << (2 * N)
dp = [[inf] * N for i in range(N2)]
for i in range(N):
    dp[1 << i][i] = 0
    
for s in range(1, N2):
    for p in range(N):
        if (s >> p) & 1 == 0:
            continue
        for q in range(N):
            if p == q:
                continue
            if (s >> q) & 1 and (s >> (q + N)) & 1:
                continue
            # if (s >> (p + N)) & 1:
            #     ns = s ^ (1 << (p + N))
            # else:
            #     ns = s ^ (1 << p)
            if (s >> q) & 1 == 0:
                ns = s | (1 << q)
                dp[ns][q] = min(dp[ns][q], dp[s][p] + C[p][q])
            else:
                ns = s | (1 << (q + N))
                dp[ns][q] = min(dp[ns][q], dp[s][p] + C[p][q])
            
ans = min(dp[-1])
for i in range(N):
    ans = min(ans, dp[(N2 - 1)^(1 << (i + N))][i])
print(ans)
0