結果

問題 No.1338 Giant Class
ユーザー MisterMister
提出日時 2021-01-15 21:25:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 895 ms
コンパイル使用メモリ 87,396 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-05-04 22:39:27
合計ジャッジ時間 4,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 33 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 77 ms
7,424 KB
testcase_07 AC 114 ms
9,088 KB
testcase_08 AC 70 ms
7,168 KB
testcase_09 AC 63 ms
6,656 KB
testcase_10 AC 132 ms
9,600 KB
testcase_11 AC 11 ms
5,376 KB
testcase_12 AC 74 ms
6,528 KB
testcase_13 AC 68 ms
7,040 KB
testcase_14 AC 17 ms
5,376 KB
testcase_15 AC 25 ms
5,376 KB
testcase_16 AC 9 ms
5,376 KB
testcase_17 AC 68 ms
6,940 KB
testcase_18 AC 17 ms
5,376 KB
testcase_19 AC 30 ms
5,376 KB
testcase_20 AC 132 ms
9,600 KB
testcase_21 AC 134 ms
9,600 KB
testcase_22 AC 134 ms
9,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 1 "main.cpp"
#include <iostream>
#include <algorithm>
#include <vector>
#include <map>

using namespace std;
using lint = long long;

void solve() {
    lint h, w;
    int q;
    cin >> h >> w >> q;

    lint ans = h * w;
    map<lint, lint> pos;

    while (q--) {
        lint x, y;
        cin >> x >> y;

        if (!pos.count(y)) pos[y] = h + 1;
        if (pos[y] >= x) {
            ans -= pos[y] - x;
            pos[y] = x;
        }

        cout << ans << "\n";
    }
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    solve();

    return 0;
}
0