結果

問題 No.1898 Battle and Exchange
ユーザー 👑 rin204rin204
提出日時 2022-04-08 23:06:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,751 ms / 5,000 ms
コード長 1,335 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 180,448 KB
最終ジャッジ日時 2024-05-06 08:51:28
合計ジャッジ時間 38,908 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,864 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 39 ms
52,736 KB
testcase_04 AC 98 ms
76,160 KB
testcase_05 AC 92 ms
76,160 KB
testcase_06 AC 111 ms
76,288 KB
testcase_07 AC 103 ms
76,416 KB
testcase_08 AC 75 ms
72,320 KB
testcase_09 AC 208 ms
78,708 KB
testcase_10 AC 39 ms
53,120 KB
testcase_11 AC 53 ms
62,976 KB
testcase_12 AC 94 ms
76,672 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 98 ms
76,800 KB
testcase_15 AC 41 ms
52,736 KB
testcase_16 AC 82 ms
73,856 KB
testcase_17 AC 208 ms
78,184 KB
testcase_18 AC 452 ms
83,712 KB
testcase_19 AC 654 ms
86,656 KB
testcase_20 AC 665 ms
86,912 KB
testcase_21 AC 1,240 ms
97,968 KB
testcase_22 AC 52 ms
61,952 KB
testcase_23 AC 76 ms
71,424 KB
testcase_24 AC 75 ms
70,272 KB
testcase_25 AC 108 ms
77,056 KB
testcase_26 AC 46 ms
59,264 KB
testcase_27 AC 108 ms
77,056 KB
testcase_28 AC 109 ms
76,672 KB
testcase_29 AC 131 ms
77,952 KB
testcase_30 AC 101 ms
76,544 KB
testcase_31 AC 61 ms
65,536 KB
testcase_32 AC 270 ms
84,608 KB
testcase_33 AC 470 ms
92,800 KB
testcase_34 AC 228 ms
83,200 KB
testcase_35 AC 325 ms
87,040 KB
testcase_36 AC 329 ms
86,400 KB
testcase_37 AC 274 ms
83,152 KB
testcase_38 AC 2,751 ms
180,448 KB
testcase_39 AC 1,669 ms
144,000 KB
testcase_40 AC 1,881 ms
150,648 KB
testcase_41 AC 1,448 ms
134,864 KB
testcase_42 AC 197 ms
78,696 KB
testcase_43 AC 1,343 ms
101,376 KB
testcase_44 AC 54 ms
63,104 KB
testcase_45 AC 246 ms
79,488 KB
testcase_46 AC 552 ms
86,184 KB
testcase_47 AC 200 ms
78,624 KB
testcase_48 AC 279 ms
81,492 KB
testcase_49 AC 121 ms
77,056 KB
testcase_50 AC 119 ms
77,440 KB
testcase_51 AC 123 ms
77,696 KB
testcase_52 AC 122 ms
77,440 KB
testcase_53 AC 257 ms
81,272 KB
testcase_54 AC 237 ms
82,048 KB
testcase_55 AC 325 ms
82,636 KB
testcase_56 AC 318 ms
84,072 KB
testcase_57 AC 2,025 ms
104,916 KB
testcase_58 AC 1,823 ms
103,696 KB
testcase_59 AC 2,218 ms
105,768 KB
testcase_60 AC 1,713 ms
102,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
最初に持つ数は
1 1 x
でいい

交換も一番小さいのと大きいのでいい

にぶたん
"""
from heapq import*

n, m = map(int, input().split())
edges = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append(v)
    edges[v].append(u)
    
tot = [0] * n
A = [0] * n
B = [0] * n
C = [0] * n
for i in range(n):
    A[i], B[i], C[i] = map(int, input().split())
    tot[i] = A[i] + B[i] + C[i]
    
def ok(x):
    if x  + 2 <= A[0] + B[0] + C[0]:
        return False
    t = x + max(A[0], B[0], C[0]) + 1
    ok = False
    for npos in edges[0]:
        if t > A[npos] + B[npos] + C[npos]:
            ok = True
            break
    if not ok:
        return False
    
    hq = [(tot[0], 0)]
    used = [False] * n
    used[0] = True
    a, b, c = x, 1, 1
    while hq:
        t, pos = heappop(hq)
        if t >= a + b + c:
            return False
        for npos in edges[pos]:
            if not used[npos]:
                used[npos] = True
                heappush(hq, (tot[npos], npos))
        lst = [a, b, c, A[pos], B[pos], C[pos]]
        lst.sort()
        a, b, c = lst[3:]

    return True
    
l = 1
r = 3 * 10 ** 8
while r - l > 1:
    mid = (l + r) // 2
    if ok(mid):
        r = mid
    else:
        l = mid
print(1, 1, r)
    
0