結果

問題 No.1008 Bench Craftsman
ユーザー maspymaspy
提出日時 2020-03-06 22:33:50
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,334 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 180,400 KB
最終ジャッジ日時 2024-10-14 08:13:54
合計ジャッジ時間 8,999 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,416 KB
testcase_01 AC 39 ms
54,296 KB
testcase_02 RE -
testcase_03 AC 39 ms
54,456 KB
testcase_04 WA -
testcase_05 AC 411 ms
172,524 KB
testcase_06 AC 260 ms
162,444 KB
testcase_07 WA -
testcase_08 AC 62 ms
67,580 KB
testcase_09 AC 201 ms
101,008 KB
testcase_10 AC 360 ms
164,524 KB
testcase_11 AC 361 ms
161,960 KB
testcase_12 AC 374 ms
174,624 KB
testcase_13 AC 374 ms
178,268 KB
testcase_14 AC 368 ms
170,668 KB
testcase_15 RE -
testcase_16 AC 357 ms
167,856 KB
testcase_17 RE -
testcase_18 WA -
testcase_19 AC 376 ms
177,840 KB
testcase_20 AC 226 ms
126,240 KB
testcase_21 AC 205 ms
117,056 KB
testcase_22 AC 216 ms
99,232 KB
testcase_23 AC 300 ms
130,952 KB
testcase_24 AC 274 ms
120,308 KB
testcase_25 AC 258 ms
142,516 KB
testcase_26 AC 229 ms
131,556 KB
testcase_27 AC 186 ms
94,756 KB
testcase_28 AC 280 ms
132,952 KB
testcase_29 AC 349 ms
152,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import itertools

# %%
N, M = map(int, readline().split())
A = list(map(int, readline().split()))
m = map(int, read().split())
XW = tuple(zip(m, m))


# %%
def test(c):
    if c == 0:
        return sum(w for x, w in XW) <= min(A)

    B1_d = [0] * (N + 1)
    B0_d = [0] * (N + 1)
    for x, w in XW:
        x -= 1
        L = x - (w + c - 1) // c + 1
        if L < 0:
            L = 0
        const_term = w - c * x
        B1_d[L] += c
        B0_d[L] += const_term
        B1_d[x + 1] -= c
        B0_d[x + 1] -= const_term
        R = x + (w + c - 1) // c - 1
        const_term = w + c * x
        if R >= N:
            R = N - 1
        B1_d[x + 1] -= c
        B0_d[x + 1] += const_term
        B1_d[R + 1] += c
        B0_d[R + 1] -= const_term
    B0 = list(itertools.accumulate(B0_d))[:-1]
    B1 = list(itertools.accumulate(B1_d))[:-1]
    cost = [a * i + b for i, (a, b) in enumerate(zip(B1, B0))]
    return all(x <= a for a, x in zip(A, cost))


# %%
left = -1
right = 10 ** 5 + 10
while left + 1 < right:
    mid = (left + right) // 2
    if test(mid):
        right = mid
    else:
        left = mid

if right > 10 ** 5:
    raise
    print(-1)
else:
    print(right)
0