結果

問題 No.1490 スライムと爆弾
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-04 11:18:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,535 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 456,692 KB
最終ジャッジ日時 2024-11-18 13:25:50
合計ジャッジ時間 50,631 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
63,352 KB
testcase_01 AC 43 ms
353,024 KB
testcase_02 AC 70 ms
83,444 KB
testcase_03 AC 56 ms
390,484 KB
testcase_04 AC 60 ms
79,828 KB
testcase_05 AC 62 ms
378,368 KB
testcase_06 AC 54 ms
74,264 KB
testcase_07 AC 56 ms
359,640 KB
testcase_08 AC 58 ms
78,124 KB
testcase_09 AC 53 ms
388,680 KB
testcase_10 AC 51 ms
72,040 KB
testcase_11 AC 54 ms
384,932 KB
testcase_12 AC 55 ms
75,984 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 43 ms
456,692 KB
testcase_24 AC 43 ms
63,356 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

H,W,N,M = map(int,input().split())
class cs_2d():
    
    def __init__(self,x):
        
            n = len(x)
            m = len(x[0])
            tmp = [[0]*(m+1) for _ in range(n+1)]
            for i in range(n):
                tmp[i+1][1:] = x[i]
                for j in range(m):
                    tmp[i+1][j+1] += tmp[i+1][j]
            
            for j in range(m):
                for i in range(n):
                    tmp[i+1][j+1] += tmp[i][j+1]
                    
            self.S = tmp
    
    def query(self,ix,jx,iy,jy):
        ##[ix,jx)×[iy,jy)
        
        T = self.S
        
        return T[jx][jy] - T[jx][iy] - T[ix][jy] + T[ix][iy]
        
        
X = [[0]*(W+2) for _ in range(H+2)]
G = [tuple(map(int,input().split())) for _ in range(N)]
fx = lambda x : min(max(0,x),H)
fy = lambda x : min(max(0,x),W)
for _ in range(M):
    x,y,b,c = map(int,input().split())
    X[fx(x-b)][fy(y-b)] += c
    X[fx(x+b)+1][fy(y+b)+1] += c
    X[fx(x-b)][fy(y+b)+1] -= c
    X[fx(x+b)+1][fy(y-b)] -= c

TX = []
for i in range(1,H+3):
    TX.append(list(cs_2d(X).S[i][1:]))

for i in range(H+1):
    TX[i][W+1]=0
    TX[i][0]=0
for i in range(W+1):
    TX[H+1][i]=0
    TX[0][i]=0
SX = cs_2d(TX)
ans = N
for t,u,l,r,a in G:
    
    if SX.query(fx(t),fx(u)+1,fy(l),fy(r)+1)>=a:
        ans -= 1
print(ans)

0