結果

問題 No.2520 L1 Explosion
ユーザー MasKoaTSMasKoaTS
提出日時 2023-03-28 22:46:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 1,155 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 148,224 KB
最終ジャッジ日時 2024-07-26 14:22:41
合計ジャッジ時間 6,622 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 42 ms
52,736 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 42 ms
52,096 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 376 ms
147,712 KB
testcase_07 AC 159 ms
84,480 KB
testcase_08 AC 374 ms
147,840 KB
testcase_09 AC 374 ms
148,224 KB
testcase_10 AC 376 ms
147,840 KB
testcase_11 AC 374 ms
147,712 KB
testcase_12 AC 375 ms
148,096 KB
testcase_13 AC 372 ms
147,968 KB
testcase_14 AC 372 ms
147,840 KB
testcase_15 AC 70 ms
67,072 KB
testcase_16 AC 296 ms
127,488 KB
testcase_17 AC 209 ms
108,672 KB
testcase_18 AC 211 ms
109,312 KB
testcase_19 AC 188 ms
103,936 KB
testcase_20 AC 62 ms
64,512 KB
testcase_21 AC 279 ms
124,288 KB
testcase_22 AC 83 ms
70,784 KB
testcase_23 AC 74 ms
67,456 KB
testcase_24 AC 249 ms
106,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
MOD = 998244353

def solve():
	n, m = map(int, input().split())

	X1 = [];	X2 = [];	Xst = set([])
	Y1 = [];	Y2 = [];	Yst = set([])
	for x, y, h in (map(int, input().split()) for _ in [0] * n):
		d = m - h
		x1, y1 = (x - d) - y, (x - d) + y
		x2, y2 = (x + d) - y, (x + d) + y
		X1.append(x1);	X2.append(x2);	Xst |= set([x1, x2])	
		Y1.append(y1);	Y2.append(y2);	Yst |= set([y1, y2])

	X = sorted(Xst);	Y = sorted(Yst)
	hX = {};	hY = {}
	for i, (x, y) in enumerate(zip(X, Y)):
		hX[x] = hY[y] = i
	h, w = len(hX), len(hY)

	dp = [[0] * w for _ in [0] * h]
	for x1, y1, x2, y2 in zip(X1, Y1, X2, Y2):
		dp[hX[x1]][hY[y1]] += 1
		dp[hX[x1]][hY[y2]] -= 1
		dp[hX[x2]][hY[y1]] -= 1
		dp[hX[x2]][hY[y2]] += 1
	for i in range(h):
		for j in range(1, w):
			dp[i][j] += dp[i][j - 1]
	for i in range(1, h):
		for j in range(w):
			dp[i][j] += dp[i - 1][j]

	ans = [0] * (n + 1)
	for i in range(h - 1):
		for j in range(w - 1):
			ans[dp[i][j]] += ((X[i + 1] - X[i]) % MOD) * ((Y[j + 1] - Y[j]) % MOD) % MOD
			ans[dp[i][j]] %= MOD
	div2 = pow(2, MOD - 2, MOD)
	for i in range(1, n + 1):
		print(ans[i] * div2 % MOD)

solve()
0