結果

問題 No.1338 Giant Class
ユーザー deuteridayodeuteridayo
提出日時 2021-01-17 13:47:19
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 664 bytes
コンパイル時間 1,722 ms
コンパイル使用メモリ 174,608 KB
実行使用メモリ 18,504 KB
最終ジャッジ日時 2024-11-29 14:47:33
合計ジャッジ時間 47,671 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 2 ms
11,432 KB
testcase_02 AC 291 ms
11,552 KB
testcase_03 AC 2 ms
11,428 KB
testcase_04 AC 2 ms
11,424 KB
testcase_05 AC 3 ms
11,556 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 567 ms
11,424 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,831 ms
13,764 KB
testcase_15 TLE -
testcase_16 AC 360 ms
11,432 KB
testcase_17 TLE -
testcase_18 AC 1,667 ms
11,424 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
// #include<atcoder/all>
using namespace std;
// using namespace atcoder;
using lint = long long;
#define endl '\n'
lint const mod = 1e9+7;
//long const mod = 998244353;

    lint h,w,q;

    lint y[100000];
    lint x[100000];
map<lint,lint>mapp;

int main(){
    cin >> h >> w >> q;
    for(int i=0;i<q;i++){
        cin >> y[i] >> x[i];
        if(mapp[x[i]] == 0){
            mapp[x[i]] = y[i];
        }else{
            mapp[x[i]] = min(mapp[x[i]], y[i]);
        }
        lint ans = 0;
        ans += (w - mapp.size()) * h;
        for(auto p : mapp){
            ans += p.second - 1;
        }
        cout << ans << endl;
    }
}
0