結果

問題 No.1490 スライムと爆弾
ユーザー da_abda_ab
提出日時 2021-04-23 23:09:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 786 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,192 KB
最終ジャッジ日時 2024-07-04 08:41:39
合計ジャッジ時間 13,740 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 498 ms
50,936 KB
testcase_01 AC 495 ms
43,868 KB
testcase_02 AC 521 ms
43,620 KB
testcase_03 AC 528 ms
43,616 KB
testcase_04 AC 616 ms
43,748 KB
testcase_05 AC 575 ms
43,616 KB
testcase_06 AC 540 ms
43,616 KB
testcase_07 AC 574 ms
43,624 KB
testcase_08 AC 528 ms
43,728 KB
testcase_09 AC 693 ms
43,716 KB
testcase_10 AC 500 ms
43,636 KB
testcase_11 AC 503 ms
43,748 KB
testcase_12 AC 534 ms
43,856 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 1490 スライムと爆弾

import numpy as np
from sys import stdin

readline=stdin.readline

h,w,n,m=map(int,readline().split())
T=[0]*n; U=[0]*n; L=[0]*n; R=[0]*n; A=[0]*n
X=[0]*m; Y=[0]*m; B=[0]*m; C=[0]*m
for k in range(n):
    T[k],U[k],L[k],R[k],A[k]=map(int,readline().split())
for k in range(m):
    X[k],Y[k],B[k],C[k]=map(int,readline().split())

damageMap=np.zeros((h+1+1,w+1+1))
for k in range(m):
    for i in range(max(Y[k]-B[k],1),min(Y[k]+B[k],h+1)+1):
        for j in range(max(X[k]-B[k],1),min(X[k]+B[k],w+1)+1):
            damageMap[i][j]+=C[k]

slimes=n
for k in range(n):
    lp=A[k]
    for i in range(T[k],U[k]+1):
        for j in range(L[k],R[k]+1):
            lp-=damageMap[i][j]
        if lp<=0:
            slimes-=1
            break
print(slimes)


0