結果

問題 No.1008 Bench Craftsman
ユーザー convexineqconvexineq
提出日時 2020-03-06 23:55:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 1,624 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 133,516 KB
最終ジャッジ日時 2024-10-14 10:13:15
合計ジャッジ時間 8,882 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 41 ms
52,204 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 39 ms
52,736 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 443 ms
121,908 KB
testcase_06 AC 203 ms
119,676 KB
testcase_07 AC 39 ms
52,736 KB
testcase_08 AC 54 ms
72,320 KB
testcase_09 AC 229 ms
84,864 KB
testcase_10 AC 383 ms
128,632 KB
testcase_11 AC 380 ms
128,692 KB
testcase_12 AC 385 ms
130,556 KB
testcase_13 AC 381 ms
133,516 KB
testcase_14 AC 389 ms
128,176 KB
testcase_15 AC 288 ms
132,036 KB
testcase_16 AC 339 ms
127,740 KB
testcase_17 AC 287 ms
132,492 KB
testcase_18 AC 336 ms
126,468 KB
testcase_19 AC 333 ms
129,804 KB
testcase_20 AC 238 ms
104,684 KB
testcase_21 AC 236 ms
98,144 KB
testcase_22 AC 271 ms
91,592 KB
testcase_23 AC 351 ms
106,932 KB
testcase_24 AC 338 ms
102,272 KB
testcase_25 AC 217 ms
112,060 KB
testcase_26 AC 186 ms
105,984 KB
testcase_27 AC 232 ms
86,624 KB
testcase_28 AC 289 ms
106,980 KB
testcase_29 AC 386 ms
114,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

import sys
readline = sys.stdin.readline
read = sys.stdin.read

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)]
V = 0
for i in range(m):
    xw[i][0] -= 1
    V += xw[i][1]

if V < min(a):
    print(0)
    exit()

from itertools import accumulate
def check(c): #耐久値 x で耐えられるか?
    imos = [0]*(n)
    res = [0]*(n)
    for x,w in xw:
        res[x] += w
        v = w//c

        l = max(0,x-v)
        r = x-1
        #print(l,r)
        if l < r:
            X = w-(x-l)*c
            y = w-c
            imos[l] += X
            imos[l+1] += c-X
            if r+1 < n:
                imos[r+1] += -y-c
            if r+2 < n:
                imos[r+2] += y
        elif l==r:
            res[r] += w-c
        
        r = min(n-1,x+v)
        l = x+1
        #print(l,r)
        if l < r:
            X = w-c
            y = w-c*(r-x)
            imos[l] += X
            imos[l+1] += -c-X
            if r+1 < n:
                imos[r+1] += -y+c
            if r+2 < n:
                imos[r+2] += y
        elif l==r:
            res[r] += w-c
        
        #print(x,w,c)
        #print(imos)
        #imos = [0]*n
    imos = accumulate(imos)    
    imos = list(accumulate(imos))
    #print(imos,res,a)
    return all(imos[i]+res[i] < a[i] for i in range(n))    


#print(check(2))
ng = 0
ok = M = 10**6
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