結果

問題 No.2657 Falling Block Game
ユーザー ゼットゼット
提出日時 2024-03-01 22:50:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,013 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 93,052 KB
最終ジャッジ日時 2024-09-29 14:40:48
合計ジャッジ時間 37,935 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,228 KB
testcase_01 AC 39 ms
53,304 KB
testcase_02 AC 37 ms
53,316 KB
testcase_03 AC 34 ms
53,820 KB
testcase_04 AC 119 ms
80,352 KB
testcase_05 TLE -
testcase_06 AC 1,672 ms
89,900 KB
testcase_07 TLE -
testcase_08 AC 1,261 ms
81,336 KB
testcase_09 AC 522 ms
82,236 KB
testcase_10 AC 1,227 ms
92,620 KB
testcase_11 AC 1,188 ms
92,464 KB
testcase_12 AC 1,304 ms
92,500 KB
testcase_13 AC 1,230 ms
92,328 KB
testcase_14 AC 1,224 ms
92,392 KB
testcase_15 AC 1,223 ms
92,668 KB
testcase_16 AC 1,181 ms
93,052 KB
testcase_17 AC 1,180 ms
92,324 KB
testcase_18 AC 1,246 ms
92,968 KB
testcase_19 AC 1,219 ms
93,004 KB
testcase_20 AC 989 ms
82,516 KB
testcase_21 AC 949 ms
82,720 KB
testcase_22 AC 973 ms
83,560 KB
testcase_23 AC 977 ms
82,776 KB
testcase_24 AC 970 ms
82,804 KB
testcase_25 AC 950 ms
82,540 KB
testcase_26 AC 960 ms
83,056 KB
testcase_27 AC 943 ms
82,660 KB
testcase_28 AC 951 ms
82,632 KB
testcase_29 AC 945 ms
83,152 KB
testcase_30 AC 579 ms
83,276 KB
testcase_31 AC 563 ms
82,632 KB
testcase_32 AC 558 ms
82,472 KB
testcase_33 AC 627 ms
82,864 KB
testcase_34 AC 599 ms
82,532 KB
testcase_35 AC 632 ms
82,828 KB
testcase_36 AC 590 ms
82,780 KB
testcase_37 AC 560 ms
82,716 KB
testcase_38 AC 672 ms
82,512 KB
testcase_39 AC 592 ms
83,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class segtreemin:
  def __init__(self,n):
    self.size=1
    while self.size<n:
      self.size*=2
    self.dat=[10**10]*(self.size*2)
  def update(self,x,a):
    x+=self.size
    self.dat[x]=a
    while x>1:
      x//=2
      self.dat[x]=min(self.dat[2*x],self.dat[2*x+1])
  def querry(self,u,v):
    u+=self.size
    v+=self.size
    score=10**10
    while u<v:
      if u&1:
        score=min(score,self.dat[u])
        u+=1
      if v&1:
        v-=1
        score=min(score,self.dat[v])
      u//=2
      v//=2
    return score
class segtreemax:
  def __init__(self,n):
    self.size=1
    while self.size<n:
      self.size*=2
    self.dat=[0]*(self.size*2)
  def update(self,x,a):
    x+=self.size
    self.dat[x]=a
    while x>1:
      x//=2
      self.dat[x]=max(self.dat[2*x],self.dat[2*x+1])
  def querry(self,u,v):
    u+=self.size
    v+=self.size
    score=0
    while u<v:
      if u&1:
        score=max(score,self.dat[u])
        u+=1
      if v&1:
        v-=1
        score=max(score,self.dat[v])
      u//=2
      v//=2
    return score
H,W=map(int,input().split())
A=[input() for i in range(H)]
dp=[0]*W
from bisect import bisect_left
Z=segtreemin(W)
for i in range(W):
  Z.update(i,0)
for i in range(H-2,-1,-1):
  dp2=[10**10]*W
  L=[-1]
  for j in range(W):
    if A[i][j]=='#':
      L.append(j)
  L.append(W)
  for j in range(W):
    if A[i][j]=='#':
      continue
    pos=bisect_left(L,j)
    a=L[pos-1]
    b=L[pos]
    ans=10**10
    l=0
    r=W-1
    while True:
      if l==r:
        break
      m=(l+r)//2
      y=j+m
      if y>=b:
        y=b-1
      score=Z.querry(j,y+1)
      if score<=m:
        r=m
      else:
        l=m+1
    ans=min(ans,l)
    l=0
    r=W-1
    while True:
      if l==r:
        break
      m=(l+r)//2
      y=j-m
      if y<=a:
        y=a+1
      score=Z.querry(y,j+1)
      if score<=m:
        r=m
      else:
        l=m+1
    ans=min(ans,l)
    dp2[j]=ans
  dp=dp2[:]
  for j in range(W):
    Z.update(j,dp[j])
for i in range(W):
  print(dp[i])
0