結果

問題 No.1338 Giant Class
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2021-01-15 23:21:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 1,789 ms
コンパイル使用メモリ 173,320 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-11-26 17:41:06
合計ジャッジ時間 6,569 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 212 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 178 ms
7,424 KB
testcase_07 AC 260 ms
9,088 KB
testcase_08 AC 162 ms
6,912 KB
testcase_09 AC 150 ms
6,820 KB
testcase_10 AC 281 ms
9,600 KB
testcase_11 AC 24 ms
6,820 KB
testcase_12 AC 196 ms
6,820 KB
testcase_13 AC 168 ms
6,912 KB
testcase_14 AC 42 ms
6,816 KB
testcase_15 AC 64 ms
6,820 KB
testcase_16 AC 22 ms
6,816 KB
testcase_17 AC 167 ms
7,040 KB
testcase_18 AC 41 ms
6,816 KB
testcase_19 AC 76 ms
6,816 KB
testcase_20 AC 298 ms
9,728 KB
testcase_21 AC 305 ms
9,728 KB
testcase_22 AC 302 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2021.01.15 23:21:12
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int main() {
    ll h,w,q;cin >> h >> w >> q;
    map<ll,ll> mp;
    ll ans = h * w;
    for (int i = 0; i < q; i++) {
        ll y,x;cin >> y >> x;
        if (mp.find(x) != mp.end()) {
            ans += h-mp[x]+1;
            mp[x] = min(mp[x],y);
            ans -= h-mp[x]+1;
        }
        else {
            mp[x] = y;
            ans -= h - y + 1;
        }
        cout << ans << endl;
    }
    return 0;
}
0