結果

問題 No.1338 Giant Class
ユーザー maninimanini
提出日時 2021-01-25 17:38:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 81,936 KB
実行使用メモリ 122,880 KB
最終ジャッジ日時 2024-06-22 09:55:32
合計ジャッジ時間 5,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,456 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 170 ms
87,808 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 40 ms
53,760 KB
testcase_05 AC 47 ms
59,904 KB
testcase_06 AC 189 ms
105,344 KB
testcase_07 AC 233 ms
117,208 KB
testcase_08 AC 180 ms
94,336 KB
testcase_09 AC 177 ms
101,812 KB
testcase_10 AC 259 ms
122,564 KB
testcase_11 AC 93 ms
77,824 KB
testcase_12 AC 187 ms
101,888 KB
testcase_13 AC 174 ms
93,380 KB
testcase_14 AC 106 ms
81,024 KB
testcase_15 AC 120 ms
83,328 KB
testcase_16 AC 95 ms
77,056 KB
testcase_17 AC 189 ms
98,132 KB
testcase_18 AC 113 ms
81,024 KB
testcase_19 AC 128 ms
86,784 KB
testcase_20 AC 262 ms
122,240 KB
testcase_21 AC 276 ms
122,240 KB
testcase_22 AC 269 ms
122,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:UTF-8
import sys

MOD = 10 ** 9 + 7
INF = float('inf')

H, W, Q = list(map(int, input().split()))     # スペース区切り連続数字
YX = [list(map(int, input().split())) for _ in range(Q)]     # スペース区切り連続数字(行列)

def compress(arr):
    *XS, = set(arr)
    XS.sort()
    return {e: i for i, e in enumerate(XS)}

mp = compress([x for y, x in YX])

res = H * W
zan = [H] * len(mp)

for y, x in YX:
    idx = mp[x]
    t = y - 1
    if zan[idx] > t:
        d = zan[idx] - t
        zan[idx] = t
        res -= d

    print("{}".format(res))
0