結果

問題 No.1338 Giant Class
ユーザー DaYuanChiDaYuanChi
提出日時 2021-01-19 20:05:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 207,316 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-05-09 22:23:04
合計ジャッジ時間 7,685 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 174 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 148 ms
7,296 KB
testcase_07 AC 214 ms
8,960 KB
testcase_08 AC 138 ms
6,912 KB
testcase_09 AC 133 ms
6,656 KB
testcase_10 AC 236 ms
9,600 KB
testcase_11 AC 21 ms
5,376 KB
testcase_12 AC 164 ms
6,528 KB
testcase_13 AC 142 ms
6,912 KB
testcase_14 AC 37 ms
5,376 KB
testcase_15 AC 55 ms
5,376 KB
testcase_16 AC 19 ms
5,376 KB
testcase_17 AC 148 ms
7,040 KB
testcase_18 AC 37 ms
5,376 KB
testcase_19 AC 68 ms
5,376 KB
testcase_20 AC 271 ms
9,728 KB
testcase_21 AC 265 ms
9,600 KB
testcase_22 AC 264 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