結果
問題 | No.1008 Bench Craftsman |
ユーザー | maspy |
提出日時 | 2020-03-06 22:39:07 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 405 ms / 2,000 ms |
コード長 | 1,396 bytes |
コンパイル時間 | 228 ms |
コンパイル使用メモリ | 82,428 KB |
実行使用メモリ | 185,376 KB |
最終ジャッジ日時 | 2024-10-14 09:00:11 |
合計ジャッジ時間 | 8,644 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
54,068 KB |
testcase_01 | AC | 38 ms
53,328 KB |
testcase_02 | AC | 40 ms
53,804 KB |
testcase_03 | AC | 40 ms
53,568 KB |
testcase_04 | AC | 39 ms
53,972 KB |
testcase_05 | AC | 405 ms
173,860 KB |
testcase_06 | AC | 239 ms
160,276 KB |
testcase_07 | AC | 39 ms
52,396 KB |
testcase_08 | AC | 59 ms
66,856 KB |
testcase_09 | AC | 192 ms
100,808 KB |
testcase_10 | AC | 354 ms
161,200 KB |
testcase_11 | AC | 355 ms
157,904 KB |
testcase_12 | AC | 357 ms
163,016 KB |
testcase_13 | AC | 352 ms
172,100 KB |
testcase_14 | AC | 350 ms
165,300 KB |
testcase_15 | AC | 354 ms
174,884 KB |
testcase_16 | AC | 349 ms
170,060 KB |
testcase_17 | AC | 355 ms
174,100 KB |
testcase_18 | AC | 369 ms
169,908 KB |
testcase_19 | AC | 373 ms
185,376 KB |
testcase_20 | AC | 197 ms
123,056 KB |
testcase_21 | AC | 185 ms
118,444 KB |
testcase_22 | AC | 199 ms
98,956 KB |
testcase_23 | AC | 274 ms
123,248 KB |
testcase_24 | AC | 258 ms
118,900 KB |
testcase_25 | AC | 237 ms
136,276 KB |
testcase_26 | AC | 202 ms
128,660 KB |
testcase_27 | AC | 168 ms
94,408 KB |
testcase_28 | AC | 256 ms
131,564 KB |
testcase_29 | AC | 329 ms
153,008 KB |
ソースコード
#!/usr/bin/env python3 # %% import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines import itertools # %% N, M = map(int, readline().split()) A = list(map(int, readline().split())) m = map(int, read().split()) XW = tuple(zip(m, m)) # %% def calc_cost(N, c, XW): B1_d = [0] * (N + 1) B0_d = [0] * (N + 1) for x, w in XW: x -= 1 L = x - (w + c - 1) // c + 1 if L < 0: L = 0 const_term = w - c * x B1_d[L] += c B0_d[L] += const_term B1_d[x + 1] -= c B0_d[x + 1] -= const_term R = x + (w + c - 1) // c - 1 const_term = w + c * x if R >= N: R = N - 1 B1_d[x + 1] -= c B0_d[x + 1] += const_term B1_d[R + 1] += c B0_d[R + 1] -= const_term B0 = list(itertools.accumulate(B0_d))[:-1] B1 = list(itertools.accumulate(B1_d))[:-1] cost = [a * i + b for i, (a, b) in enumerate(zip(B1, B0))] return cost def test(c): if c == 0: return sum(w for x, w in XW) <= min(A) cost = calc_cost(N, c, XW) return all(x < a for a, x in zip(A, cost)) # %% left = -1 right = 10 ** 5 + 10 while left + 1 < right: mid = (left + right) // 2 if test(mid): right = mid else: left = mid if right > 10 ** 5: print(-1) else: print(right)