結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,072 KB
testcase_01 AC 40 ms
54,568 KB
testcase_02 AC 40 ms
53,744 KB
testcase_03 AC 40 ms
53,616 KB
testcase_04 AC 93 ms
76,296 KB
testcase_05 AC 86 ms
76,132 KB
testcase_06 AC 105 ms
76,372 KB
testcase_07 AC 102 ms
76,752 KB
testcase_08 AC 74 ms
73,412 KB
testcase_09 AC 212 ms
78,656 KB
testcase_10 AC 41 ms
53,544 KB
testcase_11 AC 55 ms
64,136 KB
testcase_12 AC 91 ms
76,996 KB
testcase_13 AC 40 ms
53,348 KB
testcase_14 AC 95 ms
76,896 KB
testcase_15 AC 40 ms
53,420 KB
testcase_16 AC 77 ms
74,112 KB
testcase_17 AC 224 ms
78,584 KB
testcase_18 AC 545 ms
83,600 KB
testcase_19 AC 805 ms
86,924 KB
testcase_20 AC 815 ms
86,952 KB
testcase_21 AC 1,464 ms
97,908 KB
testcase_22 AC 51 ms
63,224 KB
testcase_23 AC 74 ms
71,968 KB
testcase_24 AC 71 ms
71,280 KB
testcase_25 AC 101 ms
76,888 KB
testcase_26 AC 44 ms
59,820 KB
testcase_27 AC 103 ms
77,008 KB
testcase_28 AC 104 ms
76,848 KB
testcase_29 AC 130 ms
77,828 KB
testcase_30 AC 99 ms
76,992 KB
testcase_31 AC 60 ms
65,460 KB
testcase_32 AC 324 ms
84,720 KB
testcase_33 AC 532 ms
92,856 KB
testcase_34 AC 264 ms
83,036 KB
testcase_35 AC 378 ms
86,984 KB
testcase_36 AC 384 ms
86,204 KB
testcase_37 AC 290 ms
83,404 KB
testcase_38 AC 3,197 ms
180,580 KB
testcase_39 AC 1,919 ms
143,876 KB
testcase_40 AC 2,251 ms
150,784 KB
testcase_41 AC 1,666 ms
135,024 KB
testcase_42 AC 199 ms
78,440 KB
testcase_43 AC 1,467 ms
101,332 KB
testcase_44 AC 52 ms
64,152 KB
testcase_45 AC 279 ms
79,616 KB
testcase_46 AC 640 ms
86,564 KB
testcase_47 AC 206 ms
78,760 KB
testcase_48 AC 285 ms
81,952 KB
testcase_49 AC 122 ms
77,520 KB
testcase_50 AC 117 ms
77,684 KB
testcase_51 AC 124 ms
77,884 KB
testcase_52 AC 119 ms
77,756 KB
testcase_53 AC 281 ms
81,372 KB
testcase_54 AC 245 ms
81,892 KB
testcase_55 AC 366 ms
82,888 KB
testcase_56 AC 332 ms
83,944 KB
testcase_57 AC 2,412 ms
105,180 KB
testcase_58 AC 2,176 ms
103,572 KB
testcase_59 AC 2,561 ms
106,280 KB
testcase_60 AC 1,994 ms
102,420 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