結果

問題 No.1338 Giant Class
ユーザー yuuiyuui
提出日時 2021-01-15 21:48:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 446 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 203,284 KB
実行使用メモリ 814,728 KB
最終ジャッジ日時 2024-11-26 14:05:52
合計ジャッジ時間 8,199 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 184 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 160 ms
72,828 KB
testcase_07 AC 209 ms
72,964 KB
testcase_08 AC 133 ms
25,484 KB
testcase_09 AC 113 ms
9,776 KB
testcase_10 AC 209 ms
26,096 KB
testcase_11 AC 39 ms
64,092 KB
testcase_12 AC 140 ms
6,820 KB
testcase_13 RE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)
using namespace std;
using ll = long long;

int main() {
    ll H, W, Q;
    cin >> H >> W >> Q;
    vector<ll> minV(W, H);
    ll ans = H * W;
    rep(q, Q) {
        ll y, x;
        cin >> y >> x;
        --y;
        --x;
        if (minV[x] > y) {
            ans -= (minV[x] - y);
            minV[x] = y;
        }
        cout << ans << "\n";
    }

    return 0;
}
0