結果

問題 No.1338 Giant Class
ユーザー zuminzumin
提出日時 2021-02-22 22:24:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 598 ms
コンパイル使用メモリ 76,032 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-09-21 17:55:02
合計ジャッジ時間 6,182 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 185 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 153 ms
7,296 KB
testcase_07 AC 228 ms
9,088 KB
testcase_08 AC 145 ms
7,168 KB
testcase_09 AC 134 ms
6,784 KB
testcase_10 AC 241 ms
9,600 KB
testcase_11 AC 22 ms
5,376 KB
testcase_12 AC 173 ms
6,400 KB
testcase_13 AC 149 ms
7,040 KB
testcase_14 AC 39 ms
5,376 KB
testcase_15 AC 59 ms
5,376 KB
testcase_16 AC 21 ms
5,376 KB
testcase_17 AC 149 ms
6,912 KB
testcase_18 AC 37 ms
5,376 KB
testcase_19 AC 70 ms
5,376 KB
testcase_20 AC 265 ms
9,728 KB
testcase_21 AC 269 ms
9,728 KB
testcase_22 AC 274 ms
9,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>

using namespace std;
using ll=long long;

int main(){
    ll h,w,q;
    cin>>h>>w>>q;
    ll ret=h*w;
    map<ll,ll> seatingch;

    for(int i=0;i<q;i++){
        ll y,x;
        cin>>y>>x;
        if(seatingch.count(x)){
            if(seatingch[x]>y){
                ret+=h-seatingch[x]+1;
                seatingch[x]=y;
                ret-=h-y+1;
            }
        }else{
            seatingch[x]=y;
            ret-=h-y+1;
        }
        cout<<ret<<endl;
    }

    return 0;
}
0