結果

問題 No.2698 Many Asakatsu
ユーザー karinohitokarinohito
提出日時 2024-03-16 05:17:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 527 ms / 2,000 ms
コード長 1,112 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 99,588 KB
最終ジャッジ日時 2024-09-30 05:57:53
合計ジャッジ時間 9,114 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
55,440 KB
testcase_01 AC 36 ms
55,872 KB
testcase_02 AC 37 ms
55,868 KB
testcase_03 AC 38 ms
54,560 KB
testcase_04 AC 40 ms
55,640 KB
testcase_05 AC 41 ms
60,432 KB
testcase_06 AC 38 ms
56,688 KB
testcase_07 AC 93 ms
76,024 KB
testcase_08 AC 88 ms
76,152 KB
testcase_09 AC 86 ms
76,160 KB
testcase_10 AC 83 ms
76,268 KB
testcase_11 AC 134 ms
78,384 KB
testcase_12 AC 127 ms
77,784 KB
testcase_13 AC 129 ms
78,412 KB
testcase_14 AC 129 ms
78,396 KB
testcase_15 AC 122 ms
77,604 KB
testcase_16 AC 133 ms
78,752 KB
testcase_17 AC 102 ms
76,512 KB
testcase_18 AC 135 ms
78,328 KB
testcase_19 AC 139 ms
83,668 KB
testcase_20 AC 137 ms
84,064 KB
testcase_21 AC 143 ms
84,292 KB
testcase_22 AC 455 ms
99,064 KB
testcase_23 AC 483 ms
98,060 KB
testcase_24 AC 526 ms
98,320 KB
testcase_25 AC 520 ms
98,608 KB
testcase_26 AC 527 ms
99,244 KB
testcase_27 AC 519 ms
97,660 KB
testcase_28 AC 434 ms
97,340 KB
testcase_29 AC 186 ms
99,588 KB
testcase_30 AC 214 ms
97,212 KB
testcase_31 AC 464 ms
96,900 KB
testcase_32 AC 403 ms
98,436 KB
testcase_33 AC 134 ms
83,788 KB
testcase_34 AC 367 ms
98,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin, setrecursionlimit
from collections import deque
import bisect
input = stdin.readline
readline = stdin.readline
N,M=map(int, input().split())
kousa=[]
syoko=[]
for i in range(N):
  s,k=map(int,input().split())
  kousa.append(k)
  syoko.append(s)

def SuMD(i:int,p:int):
  if p==0:
    return 0
  return syoko[i]*p+p*(p-1)//2*kousa[i]

def f_i(i:int,x:int):
  if x<=syoko[i]:
    p=0
  elif x>syoko[i]+kousa[i]*(M-1):
    p=M
  else:
    p=(x-syoko[i]-1)//kousa[i]+1
  return (SuMD(i,M)-2*SuMD(i,p))+(2*p-M)*x

def CH(i:int,j:int,k:int)->bool:
  L,R=0,10**9+1
  while R-L>1:
    mid=(L+R)//2
    if f_i(j,mid)<=f_i(k,mid):
      L=mid
    else:
      R=mid
  if f_i(i,R-1)<=f_i(j,R-1):
    return True
  else:
    return False

d=deque()
dlen=0
for i in range(N):
  while dlen>=2 and CH(d[-2],d[-1],i):
    d.pop()
    dlen-=1
  d.append(i)
  dlen+=1


Q,X=map(int,input().split())
A=list(map(int, input().split()))

AN=[0]*Q
for q in range(Q):
  while dlen>=2 and f_i(d[0],X)>f_i(d[1],X):
    dlen-=1
    d.popleft()
  AN[q]=d[0]+1
  X+=A[AN[q]-1]
  if X>10**9+5:
    X=10**9+5

print(*AN)
0