結果

問題 No.60 魔法少女
ユーザー ゆるくゆるく
提出日時 2014-11-10 02:23:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,542 ms / 5,000 ms
コード長 984 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 63,488 KB
最終ジャッジ日時 2024-06-10 02:17:38
合計ジャッジ時間 27,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,180 ms
29,056 KB
testcase_01 AC 1,114 ms
28,928 KB
testcase_02 AC 1,135 ms
28,928 KB
testcase_03 AC 1,267 ms
36,736 KB
testcase_04 AC 2,035 ms
61,056 KB
testcase_05 AC 2,113 ms
63,232 KB
testcase_06 AC 2,542 ms
63,360 KB
testcase_07 AC 2,177 ms
62,464 KB
testcase_08 AC 1,888 ms
62,080 KB
testcase_09 AC 1,582 ms
61,056 KB
testcase_10 AC 2,357 ms
63,232 KB
testcase_11 AC 1,392 ms
60,416 KB
testcase_12 AC 1,865 ms
62,592 KB
testcase_13 AC 2,490 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(n)
import heapq
import re
import bisect
import random
import math
import itertools
from collections import defaultdict, deque
from copy import deepcopy


n, k = map(int, input().split())
M = 500
SIZE = 1002
f = [[0 for _ in range(SIZE + 1)] for _ in range(SIZE + 1)]
im = [[0 for _ in range(SIZE + 1)] for _ in range(SIZE + 1)]


for _ in range(n):
  x, y, h = map(int, input().split())
  f[y + M][x + M] = h

for _ in range(k):
  ax, ay, w, h, d = map(int, input().split())
  mx = min(ax + M + w + 1, SIZE)
  my = min(ay + M + h + 1, SIZE)

  im[ay + M][ax + M] += d
  im[my][ax + M] -= d
  im[ay + M][mx] -= d
  im[my][mx] += d

for y in range(SIZE + 1):
  for x in range(SIZE):
    im[y][x + 1] += im[y][x]

for x in range(SIZE + 1):
  for y in range(SIZE):
    im[y + 1][x] += im[y][x]

ans = 0
for x in range(SIZE + 1):
  for y in range(SIZE + 1):
    ans += max(f[y][x] - im[y][x], 0)

print(ans)
0