結果

問題 No.1338 Giant Class
ユーザー paya2paya2
提出日時 2021-01-22 00:47:32
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 750 bytes
コンパイル時間 849 ms
コンパイル使用メモリ 91,352 KB
実行使用メモリ 816,324 KB
最終ジャッジ日時 2024-12-25 15:04:14
合計ジャッジ時間 11,861 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 181 ms
5,888 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 185 ms
73,856 KB
testcase_07 AC 237 ms
74,496 KB
testcase_08 AC 135 ms
26,496 KB
testcase_09 AC 113 ms
10,752 KB
testcase_10 AC 212 ms
27,776 KB
testcase_11 AC 65 ms
64,384 KB
testcase_12 AC 137 ms
5,248 KB
testcase_13 RE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include <cmath>
#include <map>
#include <set>
#include <algorithm>
#include <string>
#include <iomanip>
#include <queue>
#define rep(i,n) for (int i= 0;i<(n);++i)
using namespace std;
typedef long long ll;
using Graph = vector<vector<int>>;
int main()
{   
    ll H , W , Q;
    cin >> H >> W >> Q ;
    ll y[Q] , x[Q] ;
    ll h[W] ;
    for(ll j = 0 ; j < W ; j++){
         h[j] = H ; ;
    }
    for(ll i = 0 ; i < Q ; i++){
        cin >> y[i] >> x[i] ;
    }

    ll ans = H * W ;

    for(ll i= 0 ; i < Q ; i++){
        //cout << h[x[i]-1] << endl; 
        if(h[x[i]-1] >= y[i]){
            ans -= h[x[i]-1] - y[i] + 1 ;
            h[x[i]-1] = y[i] -1;
        }
        cout << ans << endl;
    }



}
0