結果

問題 No.1008 Bench Craftsman
ユーザー titiatitia
提出日時 2020-05-29 15:17:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,452 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 261,064 KB
最終ジャッジ日時 2024-10-15 03:47:48
合計ジャッジ時間 16,236 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,864 KB
testcase_01 AC 39 ms
52,864 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 53 ms
63,616 KB
testcase_04 WA -
testcase_05 AC 800 ms
260,448 KB
testcase_06 AC 469 ms
259,720 KB
testcase_07 WA -
testcase_08 AC 90 ms
76,800 KB
testcase_09 AC 365 ms
85,760 KB
testcase_10 AC 795 ms
260,980 KB
testcase_11 AC 783 ms
261,064 KB
testcase_12 AC 789 ms
260,668 KB
testcase_13 AC 776 ms
260,464 KB
testcase_14 AC 784 ms
260,712 KB
testcase_15 AC 124 ms
90,112 KB
testcase_16 AC 783 ms
260,608 KB
testcase_17 AC 128 ms
90,240 KB
testcase_18 WA -
testcase_19 AC 779 ms
260,612 KB
testcase_20 AC 441 ms
227,324 KB
testcase_21 AC 402 ms
192,216 KB
testcase_22 AC 415 ms
147,200 KB
testcase_23 AC 635 ms
200,312 KB
testcase_24 AC 546 ms
201,120 KB
testcase_25 AC 473 ms
231,724 KB
testcase_26 AC 399 ms
217,840 KB
testcase_27 AC 354 ms
115,064 KB
testcase_28 AC 545 ms
254,176 KB
testcase_29 AC 693 ms
235,024 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