結果

問題 No.1338 Giant Class
ユーザー chocoruskchocorusk
提出日時 2021-01-15 21:52:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 920 bytes
コンパイル時間 1,827 ms
コンパイル使用メモリ 135,408 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-05-04 23:31:07
合計ジャッジ時間 6,398 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 206 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 177 ms
7,424 KB
testcase_07 AC 258 ms
9,088 KB
testcase_08 AC 163 ms
7,040 KB
testcase_09 AC 153 ms
6,784 KB
testcase_10 AC 289 ms
9,600 KB
testcase_11 AC 25 ms
5,376 KB
testcase_12 AC 199 ms
6,528 KB
testcase_13 AC 172 ms
7,040 KB
testcase_14 AC 42 ms
5,376 KB
testcase_15 AC 62 ms
5,376 KB
testcase_16 AC 22 ms
5,376 KB
testcase_17 AC 167 ms
7,040 KB
testcase_18 AC 43 ms
5,376 KB
testcase_19 AC 78 ms
5,376 KB
testcase_20 AC 326 ms
9,856 KB
testcase_21 AC 308 ms
9,728 KB
testcase_22 AC 309 ms
9,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <stack>
#include <array>
#include <list>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
    ll h, w;
    int q; cin>>h>>w>>q;
    ll s=0;
    map<ll, ll> mp;
    for(int i=0; i<q; i++){
        ll y, x; cin>>y>>x;
        if(mp.find(x)!=mp.end()){
            if(mp[x]>y){
                s+=mp[x]-y;
                mp[x]=y;
            }
        }else{
            s+=h-y+1;
            mp[x]=y;
        }
        cout<<h*w-s<<endl;
    }
    return 0;
}
0