結果
問題 | No.1008 Bench Craftsman |
ユーザー | convexineq |
提出日時 | 2020-03-07 01:05:49 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 337 ms / 2,000 ms |
コード長 | 1,183 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 123,380 KB |
最終ジャッジ日時 | 2024-10-14 10:59:24 |
合計ジャッジ時間 | 8,067 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,096 KB |
testcase_01 | AC | 39 ms
52,480 KB |
testcase_02 | AC | 39 ms
52,096 KB |
testcase_03 | AC | 39 ms
52,812 KB |
testcase_04 | AC | 40 ms
53,120 KB |
testcase_05 | AC | 337 ms
114,088 KB |
testcase_06 | AC | 182 ms
114,108 KB |
testcase_07 | AC | 39 ms
52,480 KB |
testcase_08 | AC | 55 ms
72,448 KB |
testcase_09 | AC | 250 ms
85,664 KB |
testcase_10 | AC | 317 ms
115,852 KB |
testcase_11 | AC | 315 ms
116,040 KB |
testcase_12 | AC | 312 ms
119,692 KB |
testcase_13 | AC | 308 ms
123,148 KB |
testcase_14 | AC | 313 ms
119,352 KB |
testcase_15 | AC | 277 ms
123,380 KB |
testcase_16 | AC | 293 ms
117,504 KB |
testcase_17 | AC | 271 ms
123,080 KB |
testcase_18 | AC | 326 ms
119,432 KB |
testcase_19 | AC | 323 ms
121,716 KB |
testcase_20 | AC | 201 ms
99,548 KB |
testcase_21 | AC | 200 ms
97,448 KB |
testcase_22 | AC | 225 ms
91,896 KB |
testcase_23 | AC | 280 ms
106,416 KB |
testcase_24 | AC | 278 ms
101,212 KB |
testcase_25 | AC | 192 ms
104,052 KB |
testcase_26 | AC | 176 ms
101,500 KB |
testcase_27 | AC | 213 ms
86,404 KB |
testcase_28 | AC | 244 ms
101,024 KB |
testcase_29 | AC | 322 ms
111,264 KB |
ソースコード
# coding: utf-8 # Your code here! """ a(x-p) + b (p <= x <= q) の2階階差をとり、imos配列に加える """ def kaisa2_of_tousa(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 return 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) for x,w in xw: v = w//c l = max(0,x-v) kaisa2_of_tousa(c,w-c*(x-l),l,x-1,imos) kaisa2_of_tousa(-c,w,x,min(n-1,x+v),imos) imos = accumulate(imos) imos = list(accumulate(imos)) return all(im < ai for im,ai in zip(imos,a)) ng = 0 ok = M = 10**5+9 while ok-ng > 1: mid = (ok+ng)//2 if check(mid): ok = mid else: ng = mid if ok < M: print(ok) else: print(-1)