結果

問題 No.845 最長の切符
ユーザー convexineqconvexineq
提出日時 2019-06-28 22:56:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,065 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 84,672 KB
最終ジャッジ日時 2024-07-02 05:04:49
合計ジャッジ時間 3,791 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,340 KB
testcase_01 AC 42 ms
57,984 KB
testcase_02 AC 50 ms
61,520 KB
testcase_03 WA -
testcase_04 AC 39 ms
52,756 KB
testcase_05 AC 38 ms
52,448 KB
testcase_06 AC 39 ms
53,244 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 45 ms
59,868 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 39 ms
52,900 KB
testcase_26 AC 74 ms
75,784 KB
testcase_27 AC 38 ms
52,404 KB
testcase_28 AC 85 ms
79,968 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!


n,m = [int(i) for i in input().split()]
lrp = [[int(i) for i in input().split()] for _ in range(m)]
g = [[1e9]*n for _ in range(n)]
for l,r,p in lrp:
    g[l-1][r-1] = p
    g[r-1][l-1] = p


def generator_comb(n,k):
    _ALL=1<<n
    _a = (1<<k)-1
    yield _a
    while 1:
        _x = _a & -_a
        _y = _a + _x
        _a = (((_a & ~_y) // _x) >> 1) | _y
        if _a >= _ALL: break
        yield _a

# 下4桁;最後の位置
L = 1<<(n+4)
dp = [-1]*L

for i in range(n):
    dp[(1 << (i+4)) ^ i] = 0

for k in range(1,n):
    for i in generator_comb(n,k):
        for now in range(n):
            if i & (1 << now) == 0: continue
            ii = (i << 4)^now
            if dp[ii] < 0: continue
            for j in range(n):
                if i&(1 << j) != 0: continue
                if g[j][now] == 1e9: continue
                num = ((i^(1 << j))<<4)|j
                dp[num] = max(dp[num], dp[ii] + g[j][now])
    
#print([(str(bin(i>>4))[2:],i&15,d)  for i,d in enumerate(dp) if d > 0 ])
print(max(dp))





0