結果

問題 No.845 最長の切符
ユーザー convexineqconvexineq
提出日時 2019-06-28 23:08:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 277 ms / 3,000 ms
コード長 1,197 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 84,828 KB
最終ジャッジ日時 2024-07-02 05:08:23
合計ジャッジ時間 4,079 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,488 KB
testcase_01 AC 41 ms
57,372 KB
testcase_02 AC 49 ms
62,248 KB
testcase_03 AC 39 ms
54,088 KB
testcase_04 AC 40 ms
53,340 KB
testcase_05 AC 39 ms
52,624 KB
testcase_06 AC 40 ms
53,088 KB
testcase_07 AC 40 ms
53,380 KB
testcase_08 AC 61 ms
66,536 KB
testcase_09 AC 44 ms
59,356 KB
testcase_10 AC 64 ms
68,192 KB
testcase_11 AC 57 ms
66,012 KB
testcase_12 AC 65 ms
69,180 KB
testcase_13 AC 56 ms
65,764 KB
testcase_14 AC 58 ms
66,452 KB
testcase_15 AC 102 ms
76,012 KB
testcase_16 AC 277 ms
84,828 KB
testcase_17 AC 118 ms
78,440 KB
testcase_18 AC 163 ms
80,224 KB
testcase_19 AC 79 ms
71,552 KB
testcase_20 AC 267 ms
83,968 KB
testcase_21 AC 257 ms
84,352 KB
testcase_22 AC 116 ms
78,236 KB
testcase_23 AC 78 ms
71,424 KB
testcase_24 AC 269 ms
84,352 KB
testcase_25 AC 40 ms
52,608 KB
testcase_26 AC 77 ms
75,776 KB
testcase_27 AC 40 ms
52,224 KB
testcase_28 AC 86 ms
78,464 KB
testcase_29 AC 41 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

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:
    if g[l-1][r-1] == 1e9: g[l-1][r-1] = p
    else: g[l-1][r-1] = max(g[l-1][r-1],p)
    if g[r-1][l-1] == 1e9: g[r-1][l-1] = p
    else: g[r-1][l-1] = max(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