結果

問題 No.1338 Giant Class
ユーザー umezoumezo
提出日時 2021-01-15 22:25:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 399 bytes
コンパイル時間 1,868 ms
コンパイル使用メモリ 202,096 KB
実行使用メモリ 814,316 KB
最終ジャッジ日時 2024-05-05 00:26:39
合計ジャッジ時間 6,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 178 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 184 ms
72,832 KB
testcase_07 AC 248 ms
73,088 KB
testcase_08 AC 135 ms
25,600 KB
testcase_09 AC 114 ms
9,856 KB
testcase_10 AC 219 ms
26,112 KB
testcase_11 AC 69 ms
64,128 KB
testcase_12 AC 135 ms
5,376 KB
testcase_13 RE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

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;
  
  vector<ll> A(w);
  rep(i,w) A[i]=h;
  
  ll ans=h*w;
  rep(i,q){
    ll y,x;
    cin>>y>>x;
    y--,x--;
    
    if(A[x]>y){
      ans-=A[x]-y;
      A[x]=y;
    }
    cout<<ans<<endl;
  }
  
  return 0;
}
0