結果

問題 No.1898 Battle and Exchange
ユーザー tamatotamato
提出日時 2022-04-08 23:22:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,185 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 187,328 KB
最終ジャッジ日時 2024-05-06 09:07:13
合計ジャッジ時間 34,641 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,120 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 39 ms
53,248 KB
testcase_03 WA -
testcase_04 AC 55 ms
63,744 KB
testcase_05 AC 56 ms
64,000 KB
testcase_06 AC 102 ms
76,544 KB
testcase_07 WA -
testcase_08 AC 80 ms
73,600 KB
testcase_09 AC 135 ms
78,208 KB
testcase_10 AC 41 ms
53,120 KB
testcase_11 AC 67 ms
64,896 KB
testcase_12 AC 57 ms
65,408 KB
testcase_13 AC 39 ms
52,992 KB
testcase_14 AC 63 ms
67,840 KB
testcase_15 AC 39 ms
53,248 KB
testcase_16 AC 75 ms
71,808 KB
testcase_17 AC 146 ms
78,208 KB
testcase_18 AC 282 ms
85,036 KB
testcase_19 AC 519 ms
88,924 KB
testcase_20 AC 319 ms
89,036 KB
testcase_21 AC 884 ms
104,204 KB
testcase_22 AC 54 ms
63,616 KB
testcase_23 AC 57 ms
64,128 KB
testcase_24 AC 66 ms
68,480 KB
testcase_25 AC 92 ms
76,800 KB
testcase_26 AC 40 ms
52,864 KB
testcase_27 AC 100 ms
76,928 KB
testcase_28 AC 104 ms
76,928 KB
testcase_29 AC 106 ms
77,952 KB
testcase_30 AC 90 ms
76,416 KB
testcase_31 AC 51 ms
61,440 KB
testcase_32 AC 296 ms
87,296 KB
testcase_33 AC 535 ms
96,640 KB
testcase_34 AC 246 ms
85,120 KB
testcase_35 AC 349 ms
90,368 KB
testcase_36 WA -
testcase_37 AC 212 ms
83,356 KB
testcase_38 AC 3,131 ms
187,328 KB
testcase_39 AC 605 ms
143,868 KB
testcase_40 AC 2,258 ms
157,016 KB
testcase_41 AC 495 ms
136,100 KB
testcase_42 AC 159 ms
78,592 KB
testcase_43 AC 492 ms
103,936 KB
testcase_44 AC 57 ms
62,848 KB
testcase_45 AC 221 ms
79,636 KB
testcase_46 AC 562 ms
88,352 KB
testcase_47 AC 175 ms
78,652 KB
testcase_48 AC 154 ms
80,512 KB
testcase_49 AC 117 ms
77,184 KB
testcase_50 AC 107 ms
76,544 KB
testcase_51 AC 128 ms
77,184 KB
testcase_52 AC 105 ms
76,544 KB
testcase_53 AC 171 ms
80,024 KB
testcase_54 AC 210 ms
81,280 KB
testcase_55 AC 313 ms
83,556 KB
testcase_56 AC 197 ms
82,684 KB
testcase_57 AC 2,483 ms
112,848 KB
testcase_58 AC 1,687 ms
111,372 KB
testcase_59 AC 1,621 ms
113,272 KB
testcase_60 AC 1,529 ms
110,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    from heapq import heappop, heappush
    input = sys.stdin.readline

    def trade(X, Y):
        Z = sorted(X + Y, reverse=True)
        return Z[:3]

    N, M = map(int, input().split())
    adj = [[] for _ in range(N + 1)]
    for _ in range(M):
        a, b = map(int, input().split())
        adj[a].append(b)
        adj[b].append(a)
    ABC = [[0, 0, 0]] * (N + 1)
    for v in range(1, N+1):
        ABC[v] = list(map(int, input().split()))
    ABC_sum = [sum(abc) for abc in ABC]

    ans = 3 * 10 ** 8
    ans_k = -1
    for k in range(1):
        ok = 3 * 10 ** 8
        ng = 1
        mid = (ok + ng) // 2
        while ok - ng > 1:
            X = [1] * 3
            X[k] = mid

            # 頂点1で勝てるかどうか
            if sum(X) <= sum(ABC[1]):
                ng = mid
                mid = (ok + ng) // 2
                continue
            else:
                ma_1 = max(ABC[1])
                X[1] = max(X[1], ma_1)
                S = sum(X)
                flg = 0
                for u in adj[1]:
                    if S > ABC_sum[u]:
                        flg = 1
                        break
                if not flg:
                    ng = mid
                    mid = (ok + ng) // 2
                    continue
                X = trade(X, ABC[1])

            seen = [0] * (N + 1)
            pq = [(0, 1)]
            seen[1] = 1
            flg = 1
            while pq:
                s, v = heappop(pq)
                if s >= sum(X):
                    flg = 0
                    break
                else:
                    if v == N:
                        break
                    X = trade(X, ABC[v])
                    for u in adj[v]:
                        if not seen[u]:
                            heappush(pq, (ABC_sum[u], u))
                            seen[u] = 1
            if flg:
                ok = mid
            else:
                ng = mid
            mid = (ok + ng) // 2

        if ok + 2 < ans:
            ans = ok
            ans_k = k
    ANS = [1] * 3
    ANS[ans_k] = ans
    print(*ANS)


if __name__ == '__main__':
    main()
0