結果

問題 No.2520 L1 Explosion
ユーザー MasKoaTSMasKoaTS
提出日時 2023-10-05 11:12:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,382 ms / 2,000 ms
コード長 833 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,156 KB
最終ジャッジ日時 2024-07-26 15:00:44
合計ジャッジ時間 17,194 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 1,297 ms
77,796 KB
testcase_07 AC 328 ms
77,568 KB
testcase_08 AC 1,285 ms
77,468 KB
testcase_09 AC 1,382 ms
77,408 KB
testcase_10 AC 1,278 ms
77,696 KB
testcase_11 AC 1,298 ms
77,532 KB
testcase_12 AC 1,298 ms
77,800 KB
testcase_13 AC 1,316 ms
77,952 KB
testcase_14 AC 1,308 ms
78,156 KB
testcase_15 AC 105 ms
75,972 KB
testcase_16 AC 961 ms
77,604 KB
testcase_17 AC 632 ms
76,672 KB
testcase_18 AC 656 ms
76,800 KB
testcase_19 AC 555 ms
76,716 KB
testcase_20 AC 72 ms
75,648 KB
testcase_21 AC 884 ms
77,696 KB
testcase_22 AC 155 ms
76,032 KB
testcase_23 AC 111 ms
76,028 KB
testcase_24 AC 762 ms
77,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
MOD = 998244353
INV2 = pow(2, MOD - 2, MOD)


n, m = map(int, input().split())
mons = [(x - y, x + y, m - h) for x, y, h in (map(int, input().split()) for _ in [0] * n)]

imos = []
for x, y, d in mons:
    imos.append((x - d, y - d, 1))
    imos.append((x + d, y - d, -1))
    imos.append((x - d, y + d, -1))
    imos.append((x + d, y + d, 1))
imos.sort()

area = [0] * (n + 1)
col_nows = []
x_now = -10 ** 18
for x, y, c in imos:
    if(x_now != x):
        col_nows.sort()
        cnt = 0
        for i, (y_now, c_now) in enumerate(col_nows[:-1]):
            cnt += c_now
            y_next = col_nows[i + 1][0]
            area[cnt] += (y_next - y_now) % MOD * (x - x_now) % MOD
        x_now = x
    col_nows.append((y, c))

for s in area[1:]:
    ans = s % MOD * INV2 % MOD
    print(ans)
0