結果

問題 No.1898 Battle and Exchange
ユーザー 👑 rin204rin204
提出日時 2022-04-08 22:58:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,137 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 181,656 KB
最終ジャッジ日時 2024-05-06 08:40:53
合計ジャッジ時間 37,750 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,188 KB
testcase_01 WA -
testcase_02 AC 39 ms
53,556 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 78 ms
74,372 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 51 ms
62,744 KB
testcase_12 AC 87 ms
76,560 KB
testcase_13 AC 39 ms
53,076 KB
testcase_14 AC 93 ms
76,724 KB
testcase_15 AC 39 ms
53,452 KB
testcase_16 AC 75 ms
72,780 KB
testcase_17 AC 213 ms
78,984 KB
testcase_18 AC 457 ms
84,236 KB
testcase_19 AC 818 ms
87,352 KB
testcase_20 AC 652 ms
86,252 KB
testcase_21 AC 1,196 ms
98,428 KB
testcase_22 AC 48 ms
61,912 KB
testcase_23 AC 70 ms
71,452 KB
testcase_24 AC 68 ms
70,580 KB
testcase_25 AC 96 ms
76,896 KB
testcase_26 AC 41 ms
59,104 KB
testcase_27 AC 98 ms
77,044 KB
testcase_28 AC 101 ms
76,784 KB
testcase_29 AC 123 ms
77,628 KB
testcase_30 AC 93 ms
76,672 KB
testcase_31 AC 55 ms
66,272 KB
testcase_32 AC 219 ms
84,944 KB
testcase_33 WA -
testcase_34 AC 195 ms
84,820 KB
testcase_35 AC 257 ms
86,280 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 2,497 ms
177,896 KB
testcase_39 WA -
testcase_40 AC 1,795 ms
151,224 KB
testcase_41 AC 1,348 ms
134,216 KB
testcase_42 AC 185 ms
78,536 KB
testcase_43 AC 1,272 ms
101,976 KB
testcase_44 AC 50 ms
62,932 KB
testcase_45 AC 239 ms
79,340 KB
testcase_46 AC 549 ms
86,856 KB
testcase_47 AC 196 ms
78,692 KB
testcase_48 AC 261 ms
80,724 KB
testcase_49 AC 116 ms
77,552 KB
testcase_50 AC 111 ms
77,584 KB
testcase_51 AC 119 ms
77,568 KB
testcase_52 AC 115 ms
77,256 KB
testcase_53 AC 267 ms
80,824 KB
testcase_54 AC 237 ms
81,836 KB
testcase_55 AC 326 ms
82,808 KB
testcase_56 AC 306 ms
83,464 KB
testcase_57 WA -
testcase_58 AC 1,739 ms
104,248 KB
testcase_59 AC 1,937 ms
105,644 KB
testcase_60 AC 1,569 ms
104,316 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
max_ = [0] * n
for i in range(n):
    a, b, c = map(int, input().split())
    tot[i] = a + b + c
    max_[i] = max(a, b, c)
    
def ok(x):
    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))
        ma = max_[npos]
        if ma > c:
            c = ma
            if c > b:
                b, c = c, b
                if b > a:
                    a, b = b, a
    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