結果

問題 No.1898 Battle and Exchange
ユーザー tamatotamato
提出日時 2022-04-08 23:15:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,457 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 213,240 KB
最終ジャッジ日時 2024-11-28 14:25:34
合計ジャッジ時間 52,037 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
130,108 KB
testcase_01 AC 37 ms
130,376 KB
testcase_02 AC 35 ms
145,112 KB
testcase_03 WA -
testcase_04 AC 50 ms
64,856 KB
testcase_05 AC 48 ms
64,912 KB
testcase_06 AC 85 ms
76,796 KB
testcase_07 WA -
testcase_08 TLE -
testcase_09 AC 119 ms
78,164 KB
testcase_10 TLE -
testcase_11 AC 49 ms
66,752 KB
testcase_12 AC 48 ms
66,336 KB
testcase_13 AC 33 ms
53,656 KB
testcase_14 AC 51 ms
69,852 KB
testcase_15 AC 34 ms
54,856 KB
testcase_16 AC 65 ms
73,060 KB
testcase_17 AC 139 ms
78,708 KB
testcase_18 AC 254 ms
85,276 KB
testcase_19 AC 456 ms
89,404 KB
testcase_20 AC 261 ms
89,148 KB
testcase_21 AC 818 ms
104,488 KB
testcase_22 AC 47 ms
64,904 KB
testcase_23 AC 47 ms
64,852 KB
testcase_24 AC 54 ms
71,108 KB
testcase_25 AC 76 ms
76,452 KB
testcase_26 AC 35 ms
54,364 KB
testcase_27 AC 78 ms
77,088 KB
testcase_28 AC 84 ms
77,064 KB
testcase_29 AC 99 ms
77,700 KB
testcase_30 AC 77 ms
77,380 KB
testcase_31 AC 43 ms
63,016 KB
testcase_32 AC 262 ms
87,652 KB
testcase_33 TLE -
testcase_34 AC 218 ms
85,276 KB
testcase_35 AC 323 ms
90,492 KB
testcase_36 WA -
testcase_37 AC 203 ms
83,772 KB
testcase_38 AC 2,999 ms
187,700 KB
testcase_39 AC 560 ms
143,564 KB
testcase_40 AC 2,179 ms
157,020 KB
testcase_41 AC 463 ms
136,288 KB
testcase_42 AC 152 ms
78,336 KB
testcase_43 AC 428 ms
104,272 KB
testcase_44 AC 48 ms
64,180 KB
testcase_45 AC 200 ms
79,544 KB
testcase_46 AC 489 ms
88,360 KB
testcase_47 AC 163 ms
78,908 KB
testcase_48 AC 131 ms
81,156 KB
testcase_49 AC 106 ms
77,520 KB
testcase_50 AC 101 ms
76,956 KB
testcase_51 AC 98 ms
77,524 KB
testcase_52 AC 82 ms
77,004 KB
testcase_53 AC 135 ms
80,152 KB
testcase_54 AC 183 ms
81,104 KB
testcase_55 AC 254 ms
83,684 KB
testcase_56 AC 165 ms
82,840 KB
testcase_57 TLE -
testcase_58 AC 1,491 ms
112,032 KB
testcase_59 AC 1,419 ms
113,384 KB
testcase_60 AC 1,464 ms
213,240 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:
                diff_max = -10 ** 8
                diff_max_idx = -1
                for i in range(3):
                    d = ABC[1][i] - X[i]
                    if d > diff_max:
                        diff_max = d
                        diff_max_idx = i
                if X[diff_max_idx] < ABC[1][diff_max_idx]:
                    X[diff_max_idx] = ABC[1][diff_max_idx]
                S = sum(X)
                flg = 0
                for u in adj[1]:
                    if S > ABC_sum[u]:
                        flg = 1
                        break
                if not flg:
                    ng = mid
                    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 + 2
            ans_k = k
    ANS = [1] * 3
    ANS[ans_k] = ans - 2
    print(*ANS)


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