結果

問題 No.1008 Bench Craftsman
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-19 16:09:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 571 ms / 2,000 ms
コード長 1,469 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 189,532 KB
最終ジャッジ日時 2024-09-21 10:23:10
合計ジャッジ時間 11,854 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 40 ms
52,736 KB
testcase_04 AC 39 ms
52,608 KB
testcase_05 AC 571 ms
187,392 KB
testcase_06 AC 313 ms
172,672 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 54 ms
71,424 KB
testcase_09 AC 300 ms
92,672 KB
testcase_10 AC 552 ms
187,392 KB
testcase_11 AC 543 ms
184,064 KB
testcase_12 AC 542 ms
187,228 KB
testcase_13 AC 520 ms
187,420 KB
testcase_14 AC 544 ms
186,112 KB
testcase_15 AC 521 ms
185,728 KB
testcase_16 AC 546 ms
189,532 KB
testcase_17 AC 512 ms
184,172 KB
testcase_18 AC 539 ms
187,776 KB
testcase_19 AC 515 ms
186,540 KB
testcase_20 AC 306 ms
139,360 KB
testcase_21 AC 281 ms
124,544 KB
testcase_22 AC 285 ms
104,704 KB
testcase_23 AC 413 ms
146,816 KB
testcase_24 AC 402 ms
135,988 KB
testcase_25 AC 313 ms
154,884 KB
testcase_26 AC 266 ms
142,464 KB
testcase_27 AC 243 ms
92,928 KB
testcase_28 AC 371 ms
144,640 KB
testcase_29 AC 500 ms
179,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N, M = map(int, input().split())
A = tuple(map(int, input().split()))
XW = tuple(tuple(map(int, input().split())) for _ in range(M))
X, W = zip(*XW)
wsum = sum(W)
if all(a > wsum for a in A):
    print(0)
    exit()


def C(k):
    dpR = [0] * N
    dpL = [0] * N
    for x, w in XW:
        x -= 1
        d = (w + k - 1) // k
        if x + 1 < N:
            dpR[x + 1] -= k
            if x + d < N:
                dpR[x + d] += k
        if N - 1 - (x - 1) < N:
            dpL[N - 1 - (x - 1)] -= k
            if N - 1 - (x - d) < N:
                dpL[N - 1 - (x - d)] += k
    dpR = list(accumulate(dpR))
    dpL = list(accumulate(dpL))
    for x, w in XW:
        x -= 1
        d = (w + k - 1) // k
        dpR[x] += w
        dpL[N - 1 - x] += w
        if x + d < N:
            dpR[x + d] -= w
            dpR[x + d] += k * (d - 1)
        if N - 1 - (x - d) < N:
            dpL[N - 1 - (x - d)] -= w
            dpL[N - 1 - (x - d)] += k * (d - 1)
    dpR = list(accumulate(dpR))
    dpL = list(accumulate(dpL))
    dpL.reverse()
    B = [l + r for l, r in zip(dpL, dpR)]
    for x, w in XW:
        B[x - 1] -= w
    return all(b < a for a, b in zip(A, B))


inf = max(W) + 10
l = 0
r = inf
while r - l > 1:
    m = (r + l) // 2
    if C(m):
        r = m
    else:
        l = m

# print(l, r)
if r >= inf:
    print(-1)
else:
    print(r)
0