結果

問題 No.2574 Defect-free Rectangles
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2023-12-01 08:36:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 917 ms / 2,000 ms
コード長 1,164 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 222,332 KB
最終ジャッジ日時 2024-09-26 15:11:42
合計ジャッジ時間 6,684 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
58,588 KB
testcase_01 AC 48 ms
59,968 KB
testcase_02 AC 52 ms
64,548 KB
testcase_03 AC 88 ms
77,004 KB
testcase_04 AC 95 ms
77,960 KB
testcase_05 AC 85 ms
77,280 KB
testcase_06 AC 212 ms
95,080 KB
testcase_07 AC 165 ms
93,152 KB
testcase_08 AC 165 ms
93,140 KB
testcase_09 AC 845 ms
221,876 KB
testcase_10 AC 704 ms
218,596 KB
testcase_11 AC 917 ms
221,952 KB
testcase_12 AC 855 ms
222,332 KB
testcase_13 AC 599 ms
218,000 KB
testcase_14 AC 347 ms
123,460 KB
testcase_15 AC 239 ms
99,920 KB
testcase_16 AC 144 ms
85,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

H, W, N = map(int, input().split())
A = []
B = []
for i in range(N):
    a, b = map(int, input().split())
    A.append(a - 1)
    B.append(b - 1)
c = [[0 for _ in range(W)] for _ in range(H)]
for i in range(N):
    c[A[i]][B[i]] = 1
length = [[0 for _ in range(W)] for _ in range(H)]
for j in range(W):
    if c[H - 1][j] == 0:
        length[H - 1][j] = 1
    else:
        length[H - 1][j] = 0
for i in reversed(range(H - 1)):
    for j in range(W):
        if c[i][j] == 0:
            length[i][j] = length[i + 1][j] + 1
        else:
            length[i][j] = 0

# print(length)
ans = 0
dq = deque()

dq.append([-1, -1])
now = 0

for i in range(H):
    for j in range(W):
        idx = j
        while True:
            if len(dq) == 0:
                break
            height, width = dq.pop()
            if height < length[i][j]:
                dq.append([height, width])
                break
            now -= height * width
            idx -= width
        now += length[i][j] * (j - idx + 1)
        ans += now
        dq.append([length[i][j], j - idx + 1])
    while len(dq):
        dq.pop()
    now = 0
print(ans)
0