結果

問題 No.1338 Giant Class
ユーザー sten_sansten_san
提出日時 2021-01-16 01:22:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 208,312 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-11-26 20:21:59
合計ジャッジ時間 6,576 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 172 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 154 ms
6,400 KB
testcase_07 AC 219 ms
7,680 KB
testcase_08 AC 143 ms
6,272 KB
testcase_09 AC 132 ms
6,016 KB
testcase_10 AC 244 ms
8,064 KB
testcase_11 AC 23 ms
5,248 KB
testcase_12 AC 164 ms
5,760 KB
testcase_13 AC 147 ms
6,272 KB
testcase_14 AC 41 ms
5,248 KB
testcase_15 AC 59 ms
5,248 KB
testcase_16 AC 19 ms
5,248 KB
testcase_17 AC 143 ms
6,272 KB
testcase_18 AC 39 ms
5,248 KB
testcase_19 AC 68 ms
5,248 KB
testcase_20 AC 254 ms
8,192 KB
testcase_21 AC 271 ms
8,064 KB
testcase_22 AC 268 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template <typename T> using vec = vector<T>;
template <typename T> using vvec = vec<vec<T>>;
template <typename T> using lqueue = priority_queue<T, vector<T>, greater<T>>;
template <typename T> using gqueue = priority_queue<T, vector<T>, less<T>>;

int main() {
    int64_t h, w, q; cin >> h >> w >> q;

    int64_t sub = 0;
    map<int, int> used;
    while (q--) {
        int y, x; cin >> y >> x;
        if (used[x] < h - y + 1) {
            sub += h - y + 1 - used[x];
            used[x] = h - y + 1;
        }
        cout << h * w - sub << endl;
    }
}

0