結果

問題 No.2574 Defect-free Rectangles
ユーザー 👑 rin204rin204
提出日時 2023-12-10 18:08:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 738 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 147,712 KB
最終ジャッジ日時 2024-09-27 04:08:31
合計ジャッジ時間 5,831 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,016 KB
testcase_01 AC 45 ms
54,912 KB
testcase_02 AC 47 ms
60,672 KB
testcase_03 AC 74 ms
76,536 KB
testcase_04 AC 73 ms
76,160 KB
testcase_05 AC 80 ms
76,544 KB
testcase_06 AC 184 ms
84,864 KB
testcase_07 AC 147 ms
84,992 KB
testcase_08 AC 148 ms
85,248 KB
testcase_09 AC 738 ms
147,200 KB
testcase_10 AC 703 ms
147,476 KB
testcase_11 AC 733 ms
147,712 KB
testcase_12 AC 724 ms
147,712 KB
testcase_13 AC 397 ms
138,112 KB
testcase_14 AC 355 ms
99,072 KB
testcase_15 AC 201 ms
87,680 KB
testcase_16 AC 122 ms
78,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w, n = map(int, input().split())
C = [[1] * w for _ in range(h)]
for _ in range(n):
    a, b = map(int, input().split())
    C[a - 1][b - 1] = 0

for j in range(w):
    for i in range(1, h):
        if C[i][j] != 0:
            C[i][j] = C[i - 1][j] + 1

ans = 0
for row in C:
    tot = 0
    st = []
    for c in row:
        if c == 0:
            st = []
            tot = 0
            continue
        a = 1
        while st and st[-1][0] >= c:
            tot -= st[-1][0] * st[-1][1]
            a += st.pop()[1]
        st.append((c, a))
        tot += c * a

        ans += tot

print(ans)
0