結果

問題 No.1008 Bench Craftsman
ユーザー titiatitia
提出日時 2020-05-29 15:21:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 792 ms / 2,000 ms
コード長 1,411 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 261,052 KB
最終ジャッジ日時 2024-10-15 03:53:40
合計ジャッジ時間 14,732 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,992 KB
testcase_01 AC 42 ms
52,608 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 53 ms
63,488 KB
testcase_04 AC 53 ms
62,976 KB
testcase_05 AC 784 ms
260,252 KB
testcase_06 AC 469 ms
259,824 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 93 ms
77,184 KB
testcase_09 AC 360 ms
85,632 KB
testcase_10 AC 779 ms
260,596 KB
testcase_11 AC 784 ms
260,848 KB
testcase_12 AC 792 ms
260,452 KB
testcase_13 AC 781 ms
261,052 KB
testcase_14 AC 776 ms
260,548 KB
testcase_15 AC 126 ms
90,240 KB
testcase_16 AC 766 ms
260,684 KB
testcase_17 AC 126 ms
90,112 KB
testcase_18 AC 775 ms
260,356 KB
testcase_19 AC 768 ms
260,468 KB
testcase_20 AC 443 ms
227,060 KB
testcase_21 AC 396 ms
192,596 KB
testcase_22 AC 411 ms
146,944 KB
testcase_23 AC 619 ms
200,116 KB
testcase_24 AC 535 ms
201,000 KB
testcase_25 AC 457 ms
231,672 KB
testcase_26 AC 384 ms
217,716 KB
testcase_27 AC 355 ms
114,816 KB
testcase_28 AC 532 ms
254,444 KB
testcase_29 AC 701 ms
235,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
A=list(map(int,input().split()))

PE=[tuple(map(int,input().split())) for i in range(M)]

P=[0]*(N+1)
for x,w in PE:
    P[x]+=w

for i in range(N):
    if A[i]<=P[i+1]:
        print(-1)
        sys.exit()

OK=1<<62
NG=-1

while OK-NG>1:
    mid=(OK+NG)//2
    
    P=[0]*(N+2)
    R=[0]*(N+2)
    L=[0]*(N+2)

    RR=[0]*(N+2)
    LL=[0]*(N+2)
    
    for x,w in PE:
        if mid!=0:
            h=w//mid
        else:
            h=10**9

        P[max(1,x-h)]+=w
        if x+h+1<N+2:
            P[x+h+1]-=w

        if h==0:
            continue

        R[x+1]-=mid
        if x+h+1<N+2:
            R[x+h+1]+=mid
        if x+h+1<N+2:
            RR[x+h+1]+=h*mid

        L[x-1]-=mid
        if x-h-1>=0:
            L[x-h-1]+=mid
        if x-h-1>=0:
            LL[x-h-1]+=h*mid

    #print(P,R,L,RR,LL)

    for i in range(1,N+2):
        P[i]+=P[i-1]
        R[i]+=R[i-1]

    for i in range(N,-1,-1):
        L[i]+=L[i+1]

    for i in range(N+2):
        R[i]+=RR[i]
        L[i]+=LL[i]

    for i in range(1,N+2):
        R[i]+=R[i-1]

    for i in range(N,-1,-1):
        L[i]+=L[i+1]

    #print(mid,P,R,L)
    #print([P[i]+R[i]+L[i] for i in range(1,N+1)])

    for i in range(1,N+1):
        if P[i]+R[i]+L[i]<A[i-1]:
            True
        else:
            NG=mid
            break
    else:
        OK=mid
print(OK)
0