結果

問題 No.1008 Bench Craftsman
ユーザー convexineqconvexineq
提出日時 2020-03-07 01:24:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 859 bytes
コンパイル時間 586 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 124,420 KB
最終ジャッジ日時 2024-10-14 11:01:24
合計ジャッジ時間 8,098 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,060 KB
testcase_01 AC 40 ms
52,576 KB
testcase_02 AC 39 ms
53,260 KB
testcase_03 AC 40 ms
53,536 KB
testcase_04 AC 40 ms
53,212 KB
testcase_05 AC 342 ms
115,924 KB
testcase_06 AC 179 ms
110,652 KB
testcase_07 AC 38 ms
53,256 KB
testcase_08 AC 54 ms
73,824 KB
testcase_09 AC 264 ms
85,776 KB
testcase_10 AC 316 ms
117,892 KB
testcase_11 AC 327 ms
116,348 KB
testcase_12 AC 317 ms
117,804 KB
testcase_13 AC 321 ms
119,280 KB
testcase_14 AC 319 ms
124,420 KB
testcase_15 AC 283 ms
123,536 KB
testcase_16 AC 310 ms
122,120 KB
testcase_17 AC 284 ms
122,232 KB
testcase_18 AC 330 ms
117,144 KB
testcase_19 AC 318 ms
122,388 KB
testcase_20 AC 215 ms
99,644 KB
testcase_21 AC 204 ms
96,924 KB
testcase_22 AC 242 ms
91,928 KB
testcase_23 AC 295 ms
103,460 KB
testcase_24 AC 275 ms
101,628 KB
testcase_25 AC 194 ms
104,904 KB
testcase_26 AC 174 ms
100,868 KB
testcase_27 AC 216 ms
86,652 KB
testcase_28 AC 256 ms
103,468 KB
testcase_29 AC 311 ms
112,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(a,b,p,q,imos):
    if p > q: return
    imos[p] += b
    if p+1 < n: imos[p+1] += a-b
    y = a*(q-p)+b
    if q+1 < n: imos[q+1] += -y-a
    if q+2 < n: imos[q+2] += y

import sys
readline = sys.stdin.readline

n,m = [int(i) for i in readline().split()]
a = [int(i) for i in readline().split()]
xw = [[int(i) for i in readline().split()] for _ in range(m)]

from itertools import accumulate as acc
def check(c):
    imos = [0]*(n)
    for x,w in xw:
        x -= 1
        v = w//c
        l = max(0,x-v)
        f(c,w-c*(x-l),l,x-1,imos)
        f(-c,w,x,min(n-1,x+v),imos)
    res = list(acc(acc(imos)))
    return all(ri < ai for ri,ai in zip(res,a))    

ng = V = 0
ok = M = 2**17
if sum(r[1] for r in xw) < min(a): ok = 0

while ok-ng > 1:
    mid = (ok+ng)//2
    if check(mid): ok = mid
    else: ng = mid

if ok < M: print(ok)
else: print(-1)

0