結果
問題 | No.1490 スライムと爆弾 |
ユーザー | Navier_Boltzmann |
提出日時 | 2022-09-04 11:10:35 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,419 bytes |
コンパイル時間 | 200 ms |
コンパイル使用メモリ | 82,956 KB |
実行使用メモリ | 187,016 KB |
最終ジャッジ日時 | 2024-11-18 13:06:27 |
合計ジャッジ時間 | 8,678 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
56,628 KB |
testcase_01 | AC | 41 ms
56,184 KB |
testcase_02 | AC | 46 ms
62,908 KB |
testcase_03 | AC | 47 ms
62,804 KB |
testcase_04 | AC | 47 ms
64,520 KB |
testcase_05 | AC | 47 ms
63,840 KB |
testcase_06 | AC | 46 ms
63,448 KB |
testcase_07 | AC | 48 ms
63,964 KB |
testcase_08 | AC | 47 ms
62,884 KB |
testcase_09 | AC | 52 ms
63,632 KB |
testcase_10 | AC | 48 ms
62,276 KB |
testcase_11 | AC | 49 ms
64,272 KB |
testcase_12 | AC | 51 ms
65,304 KB |
testcase_13 | AC | 343 ms
118,952 KB |
testcase_14 | WA | - |
testcase_15 | AC | 321 ms
127,924 KB |
testcase_16 | AC | 274 ms
113,172 KB |
testcase_17 | AC | 247 ms
136,108 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 40 ms
55,960 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 479 ms
168,288 KB |
testcase_29 | AC | 457 ms
160,732 KB |
testcase_30 | WA | - |
ソースコード
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 = cs_2d(X).S for i in range(H+2): TX[i][W+1]=0 TX[i][0]=0 for i in range(W+2): 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)