結果

問題 No.440 2次元チワワ問題
ユーザー maspymaspy
提出日時 2020-06-05 19:22:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,892 ms / 5,000 ms
コード長 1,438 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 54,484 KB
最終ジャッジ日時 2024-05-09 16:24:48
合計ジャッジ時間 38,055 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 615 ms
44,580 KB
testcase_01 AC 611 ms
44,192 KB
testcase_02 AC 617 ms
44,188 KB
testcase_03 AC 613 ms
44,320 KB
testcase_04 AC 612 ms
44,696 KB
testcase_05 AC 597 ms
44,444 KB
testcase_06 AC 609 ms
44,572 KB
testcase_07 AC 891 ms
44,056 KB
testcase_08 AC 1,586 ms
44,576 KB
testcase_09 AC 1,717 ms
47,860 KB
testcase_10 AC 815 ms
44,476 KB
testcase_11 AC 1,247 ms
44,700 KB
testcase_12 AC 847 ms
44,812 KB
testcase_13 AC 1,575 ms
49,024 KB
testcase_14 AC 748 ms
44,444 KB
testcase_15 AC 1,448 ms
49,780 KB
testcase_16 AC 1,422 ms
44,316 KB
testcase_17 AC 1,838 ms
54,040 KB
testcase_18 AC 1,831 ms
54,044 KB
testcase_19 AC 1,799 ms
54,484 KB
testcase_20 AC 1,809 ms
53,792 KB
testcase_21 AC 1,848 ms
53,844 KB
testcase_22 AC 1,892 ms
53,708 KB
testcase_23 AC 1,870 ms
53,712 KB
testcase_24 AC 1,855 ms
53,584 KB
testcase_25 AC 1,850 ms
53,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

H, W = map(int, readline().split())
A = np.frombuffer(read(H * (W + 1)), 'S1').reshape(H, -1)[:, :W]
Q = int(readline())
nums = np.array(read().split(), np.int32) - 1
X1 = nums[::4]
Y1 = nums[1::4]
X2 = nums[2::4]
Y2 = nums[3::4]

def solve(A, X1, Y1, X2, Y2):
    # 上から下に向かっての cww を数える
    H, W = A.shape
    c = np.zeros((H + 1, W), np.int64)
    w = np.zeros((H + 1, W), np.int64)
    c[1:] = (A == b'c').cumsum(axis=0)
    w[1:] = (A == b'w').cumsum(axis=0)
    cw = np.zeros_like(c)
    ww = np.zeros_like(c)
    cww = np.zeros_like(c)
    for n in range(1, len(A)):
        row = A[n]
        is_w = row == b'w'
        cw[n + 1] = cw[n] + is_w * c[n]
        ww[n + 1] = w[n] + is_w * w[n]
        cww[n + 1] = cww[n] + is_w * cw[n]
    for x1, x2, y1, y2 in zip(X1, X2, Y1, Y2):
        y = slice(y1, y2 + 1, 1)
        x = cww[x2 + 1, y] - cww[x1, y]
        n = w[x2 + 1, y] - w[x1, y]
        x -= c[x1, y] * (n * (n - 1) // 2)
        x -= cw[x1, y] * (w[x2 + 1, y] - w[x1, y])
        yield x.sum()

answer = [0] * Q
for _ in range(4):
    for i, x in enumerate(solve(A, X1, Y1, X2, Y2)):
        answer[i] += x
    A = A.T[::-1]
    H, W = A.shape
    X1, Y1 = H - 1 - Y1, X1
    X2, Y2 = H - 1 - Y2, X2
    X1, X2 = X2, X1

print('\n'.join(map(str, answer)))
0