結果

問題 No.1008 Bench Craftsman
ユーザー qqqqqqqq
提出日時 2020-03-26 18:36:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 1,192 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 120,488 KB
最終ジャッジ日時 2024-06-10 13:14:35
合計ジャッジ時間 7,901 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,992 KB
testcase_01 AC 36 ms
53,108 KB
testcase_02 AC 33 ms
52,268 KB
testcase_03 AC 42 ms
53,784 KB
testcase_04 AC 34 ms
53,240 KB
testcase_05 AC 331 ms
117,156 KB
testcase_06 AC 142 ms
111,500 KB
testcase_07 AC 34 ms
52,684 KB
testcase_08 AC 67 ms
74,380 KB
testcase_09 AC 239 ms
87,904 KB
testcase_10 AC 275 ms
120,472 KB
testcase_11 AC 274 ms
120,228 KB
testcase_12 AC 273 ms
120,480 KB
testcase_13 AC 278 ms
120,248 KB
testcase_14 AC 280 ms
120,488 KB
testcase_15 AC 115 ms
90,792 KB
testcase_16 AC 272 ms
120,076 KB
testcase_17 AC 117 ms
90,764 KB
testcase_18 AC 328 ms
120,204 KB
testcase_19 AC 293 ms
120,440 KB
testcase_20 AC 179 ms
101,020 KB
testcase_21 AC 183 ms
92,368 KB
testcase_22 AC 241 ms
94,036 KB
testcase_23 AC 290 ms
109,740 KB
testcase_24 AC 281 ms
103,796 KB
testcase_25 AC 176 ms
112,504 KB
testcase_26 AC 159 ms
104,592 KB
testcase_27 AC 208 ms
89,300 KB
testcase_28 AC 209 ms
109,720 KB
testcase_29 AC 270 ms
118,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
reader = (s.rstrip() for s in sys.stdin)
input = reader.__next__

n,m = map(int, input().split())
a = list(map(int, input().split()))
xw = []
for i in range(m):
    x,w = map(int, input().split())
    x -= 1
    xw.append([x,w])

def check(c):
    a_imos = [0]*(n+1)
    b_imos = [0]*(n+1)
    for x,w in xw:
        if c == 0:
            b_imos[0] += w
            b_imos[-1] -= w
            continue
        # xより大きい方
        right = min(n-1, (w+c*x)//c)
        if x<right:
            a_imos[x+1] += -c
            a_imos[right+1] -= -c
            b_imos[x+1] += w+c*x
            b_imos[right+1] -= w+c*x
        left = max(0, -(-(-w+c*x)//c))
        # x以下
        a_imos[left] += c
        a_imos[x+1] -= c
        b_imos[left] += w-c*x
        b_imos[x+1] -= w-c*x
    for i in range(n):
        s = i*a_imos[i] + b_imos[i]
        if s >= a[i]:
            return False
        a_imos[i+1] += a_imos[i]
        b_imos[i+1] += b_imos[i]
    return True

left = -1
right = 10**6

if not check(10**10):
    print(-1)
    exit()
while right-left > 1:
    mid = (right+left)//2
    if check(mid):
        right = mid
    else:
        left = mid
print(right)
0