結果

問題 No.2520 L1 Explosion
ユーザー ShirotsumeShirotsume
提出日時 2023-10-04 23:37:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,250 ms / 2,000 ms
コード長 923 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,484 KB
最終ジャッジ日時 2024-07-26 14:55:00
合計ジャッジ時間 15,648 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,756 KB
testcase_01 AC 43 ms
55,424 KB
testcase_02 AC 43 ms
55,808 KB
testcase_03 AC 42 ms
55,424 KB
testcase_04 AC 46 ms
55,296 KB
testcase_05 AC 43 ms
55,552 KB
testcase_06 AC 1,148 ms
79,012 KB
testcase_07 AC 302 ms
78,592 KB
testcase_08 AC 1,141 ms
78,976 KB
testcase_09 AC 1,250 ms
79,232 KB
testcase_10 AC 1,176 ms
79,484 KB
testcase_11 AC 1,143 ms
79,308 KB
testcase_12 AC 1,174 ms
79,208 KB
testcase_13 AC 1,191 ms
79,140 KB
testcase_14 AC 1,172 ms
79,200 KB
testcase_15 AC 101 ms
77,272 KB
testcase_16 AC 858 ms
78,720 KB
testcase_17 AC 570 ms
78,208 KB
testcase_18 AC 602 ms
78,080 KB
testcase_19 AC 505 ms
77,952 KB
testcase_20 AC 72 ms
76,800 KB
testcase_21 AC 820 ms
78,824 KB
testcase_22 AC 154 ms
77,508 KB
testcase_23 AC 107 ms
77,312 KB
testcase_24 AC 695 ms
78,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n, m = mi()

XYH = [li() for _ in range(n)]
XYH = [[v[0] - v[1], v[0] + v[1],m - v[2]] for v in XYH]

L = []
for x, y, h in XYH:
    L.append((x - h, y - h, 1))
    L.append((x + h, y - h, -1))
    L.append((x - h, y + h, -1))
    L.append((x + h, y + h, 1))
L.sort()
a = [0] * (n + 1)

ans = [0] * (n + 1)

now = []
nowx = -inf
for x, y, c in L:
    if nowx != x:
        now.sort()
        cnt = 0
        bef = -inf
        for i in range(0, len(now)-1):
            cnt += now[i][1]
            ans[cnt] += (now[i + 1][0] - now[i][0]) * (x - nowx)
        nowx = x
    now.append((y, c))
for v in [v * pow(2, mod - 2, mod) % mod for v in ans[1:]]:
    print(v)
        


0