結果

問題 No.1338 Giant Class
ユーザー 👑 NachiaNachia
提出日時 2021-01-15 21:35:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 206,052 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-05-04 22:53:47
合計ジャッジ時間 4,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 34 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 46 ms
6,656 KB
testcase_07 AC 71 ms
7,808 KB
testcase_08 AC 44 ms
6,400 KB
testcase_09 AC 41 ms
6,272 KB
testcase_10 AC 77 ms
8,192 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 50 ms
5,888 KB
testcase_13 AC 45 ms
6,272 KB
testcase_14 AC 12 ms
5,376 KB
testcase_15 AC 18 ms
5,376 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 47 ms
6,272 KB
testcase_18 AC 14 ms
5,376 KB
testcase_19 AC 21 ms
5,376 KB
testcase_20 AC 81 ms
8,320 KB
testcase_21 AC 78 ms
8,320 KB
testcase_22 AC 78 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL=long long;
using ULL=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

int H,W,Q;
map<int,int> G;
LL ans=0;

int main(){
  scanf("%d%d%d",&H,&W,&Q);
  ans=LL(H)*W;
  while(Q--){
    int y,x; scanf("%d%d",&y,&x);
    int g=G[x];
    if(g==0) g=H+1;
    ans-=g;
    g=min(g,y);
    ans+=g;
    G[x]=g;
    printf("%lld\n",ans);
  }
  return 0;
}
0