結果

問題 No.1338 Giant Class
ユーザー umezoumezo
提出日時 2021-01-15 22:32:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 207,060 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-11-26 16:25:20
合計ジャッジ時間 6,835 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 183 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 162 ms
7,424 KB
testcase_07 AC 237 ms
9,088 KB
testcase_08 AC 157 ms
6,912 KB
testcase_09 AC 136 ms
6,820 KB
testcase_10 AC 258 ms
9,472 KB
testcase_11 AC 25 ms
6,816 KB
testcase_12 AC 188 ms
6,816 KB
testcase_13 AC 157 ms
7,040 KB
testcase_14 AC 41 ms
6,820 KB
testcase_15 AC 61 ms
6,820 KB
testcase_16 AC 21 ms
6,816 KB
testcase_17 AC 151 ms
7,040 KB
testcase_18 AC 38 ms
6,816 KB
testcase_19 AC 70 ms
6,816 KB
testcase_20 AC 280 ms
9,600 KB
testcase_21 AC 286 ms
9,728 KB
testcase_22 AC 288 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;

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

int main(){
  ll h,w,q;
  cin>>h>>w>>q;
  
  map<ll,ll> m;
  
  ll ans=h*w;
  rep(i,q){
    ll y,x;
    cin>>y>>x;
    y--,x--;
    
    if(m[x]<h-y){
      ans-=h-y-m[x];
      m[x]=h-y;
    }
    cout<<ans<<endl;
  }
  
  return 0;
}
0