結果

問題 No.1338 Giant Class
ユーザー kappybarkappybar
提出日時 2021-01-15 21:51:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,126 bytes
コンパイル時間 1,785 ms
コンパイル使用メモリ 174,100 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-05-04 23:28:24
合計ジャッジ時間 5,486 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
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 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define chmin(x,y) x = min((x),(y));
#define chmax(x,y) x = max((x),(y));
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
const int INF = 1e9;
const long long LINF = 1e17;
const int MOD = 1000000007;
//const int MOD = 998244353;
const double PI = 3.14159265358979323846;

template<typename T>
vector<T> compress(vector<T> &a){
    vector<T> val = a;
    int n = (int)a.size();
    sort(val.begin(),val.end());
    val.erase(unique(val.begin(),val.end()),val.end());
    for(int i=0;i<n;i++){
        a[i] = lower_bound(val.begin(),val.end(),a[i]) - val.begin();
    }
    return val;
}

int main(){
    int h,w,q;
    cin >> h >> w >> q;
    vector<ll> y(q),x(q);
    rep(i,q){
        cin >> y[i] >> x[i];
        --y[i];--x[i];
    }
    vector<ll> val = compress(x);
    vector<ll> ok(val.size(),h);
    ll ans = h*w;
    rep(i,q){
        if(ok[x[i]] >= y[i]){
            ans -= ok[x[i]] - y[i];
            ok[x[i]] = y[i];
        }
        cout << ans << endl;
    }
    
    return 0;
}
0