結果

問題 No.1338 Giant Class
ユーザー DaYuanChiDaYuanChi
提出日時 2021-01-19 20:05:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 2,295 ms
コンパイル使用メモリ 208,080 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-12-17 16:45:57
合計ジャッジ時間 8,010 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 206 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 180 ms
7,424 KB
testcase_07 AC 268 ms
9,088 KB
testcase_08 AC 166 ms
7,040 KB
testcase_09 AC 154 ms
6,816 KB
testcase_10 AC 291 ms
9,728 KB
testcase_11 AC 26 ms
6,820 KB
testcase_12 AC 197 ms
6,816 KB
testcase_13 AC 167 ms
7,168 KB
testcase_14 AC 43 ms
6,816 KB
testcase_15 AC 64 ms
6,820 KB
testcase_16 AC 23 ms
6,820 KB
testcase_17 AC 169 ms
7,040 KB
testcase_18 AC 42 ms
6,816 KB
testcase_19 AC 76 ms
6,816 KB
testcase_20 AC 311 ms
9,728 KB
testcase_21 AC 305 ms
9,728 KB
testcase_22 AC 318 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

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