結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 218 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 184 ms
7,296 KB
testcase_07 AC 272 ms
9,088 KB
testcase_08 AC 166 ms
7,168 KB
testcase_09 AC 155 ms
6,784 KB
testcase_10 AC 296 ms
9,472 KB
testcase_11 AC 25 ms
5,376 KB
testcase_12 AC 205 ms
6,528 KB
testcase_13 AC 168 ms
7,168 KB
testcase_14 AC 42 ms
5,376 KB
testcase_15 AC 63 ms
5,376 KB
testcase_16 AC 22 ms
5,376 KB
testcase_17 AC 169 ms
7,040 KB
testcase_18 AC 43 ms
5,376 KB
testcase_19 AC 79 ms
5,376 KB
testcase_20 AC 309 ms
9,728 KB
testcase_21 AC 310 ms
9,856 KB
testcase_22 AC 308 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