結果

問題 No.60 魔法少女
ユーザー szkhtsszkhts
提出日時 2024-04-21 08:08:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,851 ms / 5,000 ms
コード長 762 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 61,312 KB
最終ジャッジ日時 2024-10-13 06:54:53
合計ジャッジ時間 18,135 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 552 ms
19,584 KB
testcase_01 AC 541 ms
19,584 KB
testcase_02 AC 531 ms
19,584 KB
testcase_03 AC 571 ms
27,264 KB
testcase_04 AC 1,321 ms
52,736 KB
testcase_05 AC 1,349 ms
60,672 KB
testcase_06 AC 1,812 ms
60,672 KB
testcase_07 AC 1,494 ms
58,112 KB
testcase_08 AC 1,220 ms
56,704 KB
testcase_09 AC 921 ms
53,120 KB
testcase_10 AC 1,773 ms
60,672 KB
testcase_11 AC 764 ms
52,864 KB
testcase_12 AC 1,164 ms
57,984 KB
testcase_13 AC 1,851 ms
61,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

dp = [[0 for i in range(1010)] for j in range(1010)]
n, k = map(int, input().split())

x = [0] * n
y = [0] * n
hp = [0] * n
for i in range(n):
    xi, yi, hpi = map(int, input().split())
    x[i] = xi + 501
    y[i] = yi + 501
    hp[i] = hpi

for i in range(k):
    ax, ay, w, h, d = map(int, input().split())
    ax += 501
    ay += 501
    bx = min(1005, ax + w + 1)
    by = min(1005, ay + h + 1)
    dp[ay][ax] += d
    dp[ay][bx] -= d
    dp[by][ax] -= d
    dp[by][bx] += d
    
for i in range(1, 1006):
    for j in range(1, 1006):
        dp[i][j] += dp[i][j - 1]
        
for j in range(1, 1006):
    for i in range(1, 1006):
        dp[i][j] += dp[i - 1][j]
        
ans = 0
for i in range(n):
    ans += max(0, hp[i] - dp[y[i]][x[i]])
    
print(ans)
0