結果

問題 No.60 魔法少女
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-25 19:19:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 989 ms / 5,000 ms
コード長 618 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 89,996 KB
最終ジャッジ日時 2024-09-22 12:46:29
合計ジャッジ時間 15,443 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 594 ms
75,732 KB
testcase_01 AC 591 ms
75,468 KB
testcase_02 AC 590 ms
75,340 KB
testcase_03 AC 594 ms
75,208 KB
testcase_04 AC 873 ms
82,096 KB
testcase_05 AC 820 ms
83,112 KB
testcase_06 AC 984 ms
89,208 KB
testcase_07 AC 864 ms
83,308 KB
testcase_08 AC 766 ms
81,912 KB
testcase_09 AC 658 ms
77,904 KB
testcase_10 AC 949 ms
84,544 KB
testcase_11 AC 629 ms
76,024 KB
testcase_12 AC 753 ms
79,444 KB
testcase_13 AC 989 ms
89,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
U = 1000

N, K = map(int, input().split())
xyh = np.array([input().split() for _ in range(N)], dtype=np.int64)
x, y, h, w, d = np.array([input().split() for _ in range(K)], dtype=np.int64).T
x += U
y += U

G = np.zeros((2*U+2, 2*U+2), dtype=np.int64)
np.add.at(G, (x, y), d)
np.add.at(G, (x + h + 1, y), -d)
np.add.at(G, (x, y + w + 1), -d)
np.add.at(G, (x + h + 1, y + w + 1), d)
np.cumsum(G, axis=0, out=G)
np.cumsum(G, axis=1, out=G)

x, y, h = xyh.T
x += U
y += U
rest = h - G[x, y]
rest[rest < 0] = 0
print(rest.sum())
0