結果

問題 No.1338 Giant Class
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-08-25 00:01:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 207,832 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-06-06 00:57:21
合計ジャッジ時間 7,230 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 200 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 162 ms
7,424 KB
testcase_07 AC 235 ms
9,088 KB
testcase_08 AC 147 ms
7,168 KB
testcase_09 AC 141 ms
6,944 KB
testcase_10 AC 263 ms
9,600 KB
testcase_11 AC 24 ms
6,940 KB
testcase_12 AC 176 ms
6,940 KB
testcase_13 AC 156 ms
6,944 KB
testcase_14 AC 40 ms
6,940 KB
testcase_15 AC 59 ms
6,940 KB
testcase_16 AC 20 ms
6,940 KB
testcase_17 AC 149 ms
7,040 KB
testcase_18 AC 39 ms
6,940 KB
testcase_19 AC 70 ms
6,940 KB
testcase_20 AC 280 ms
9,728 KB
testcase_21 AC 291 ms
9,856 KB
testcase_22 AC 283 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){

    ll H, W, Q, ans, x, y, mi;
    cin >> H >> W >> Q;
    map<ll, ll> mp;
    ans = H*W;

    while(Q){
        Q--;
        cin >> x >> y;
        swap(x, y);
        mi = H+1;
        if (mp.count(x)){
            mi = mp[x];
            mp[x] = min(mi, y);
        }
        else mp[x] = y;
        ans -= max(mi-y, 0LL);
        cout << ans << endl;
    }

    return 0;
}
0