結果

問題 No.1338 Giant Class
ユーザー Manuel1024Manuel1024
提出日時 2021-03-21 14:02:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 81,340 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-05-01 22:57:09
合計ジャッジ時間 5,644 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 201 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 184 ms
6,940 KB
testcase_07 AC 271 ms
8,064 KB
testcase_08 AC 178 ms
6,944 KB
testcase_09 AC 161 ms
6,940 KB
testcase_10 AC 303 ms
8,576 KB
testcase_11 AC 26 ms
6,940 KB
testcase_12 AC 201 ms
6,944 KB
testcase_13 AC 177 ms
6,940 KB
testcase_14 AC 44 ms
6,940 KB
testcase_15 AC 66 ms
6,940 KB
testcase_16 AC 23 ms
6,940 KB
testcase_17 AC 175 ms
6,940 KB
testcase_18 AC 44 ms
6,940 KB
testcase_19 AC 80 ms
6,940 KB
testcase_20 AC 336 ms
8,704 KB
testcase_21 AC 331 ms
8,704 KB
testcase_22 AC 328 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
using namespace std;
using ll = long long int;

int main(){
    int h, w, q;
    cin >> h >> w >> q;
    ll ans = (ll)h*w;
    vector<int> y(q), x(q);
    map<int, int> memo;
    for(int i = 0; i < q; i++){
        cin >> y[i] >> x[i];
        memo[x[i]] = h;
    }

    for(int i = 0; i < q; i++){
        if(memo[x[i]] > y[i]-1){
            ans -= memo[x[i]];
            ans += y[i]-1;
            memo[x[i]] = y[i]-1;
        }
        cout << ans << endl;
    }
    return 0;
}
0