結果

問題 No.1338 Giant Class
ユーザー ぷらぷら
提出日時 2021-01-15 21:31:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 1,738 ms
コンパイル使用メモリ 175,504 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-05-04 22:47:18
合計ジャッジ時間 5,736 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 186 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 171 ms
8,064 KB
testcase_07 AC 218 ms
10,112 KB
testcase_08 AC 142 ms
7,808 KB
testcase_09 AC 136 ms
7,296 KB
testcase_10 AC 261 ms
10,880 KB
testcase_11 AC 23 ms
5,376 KB
testcase_12 AC 167 ms
7,424 KB
testcase_13 AC 146 ms
7,680 KB
testcase_14 AC 37 ms
5,376 KB
testcase_15 AC 57 ms
5,376 KB
testcase_16 AC 19 ms
5,376 KB
testcase_17 AC 145 ms
7,680 KB
testcase_18 AC 43 ms
5,376 KB
testcase_19 AC 77 ms
5,376 KB
testcase_20 AC 270 ms
11,008 KB
testcase_21 AC 266 ms
11,136 KB
testcase_22 AC 261 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
typedef pair<int,int> P;
int INF = 3e18+7;
int mod = 1e9+7;
int dx[] = {1, 0,-1, 0, 1, 1,-1,-1};
int dy[] = {0, 1, 0,-1, 1,-1, 1,-1};
signed main() {
    int H,W,Q;
    cin >> H >> W >> Q;
    vector<int>Y(Q),X(Q);
    int ans = H*W;
    map<int,int>Mp;
    for(int i = 0; i < Q; i++) {
        cin >> Y[i] >> X[i];
        if(!Mp.count(X[i])) {
            Mp[X[i]] = Y[i];
            ans -= H-Y[i]+1;
        }
        else if(Mp[X[i]] > Y[i]) {
            ans -= Mp[X[i]]-Y[i];
            Mp[X[i]] = Y[i];
        }
        cout << ans << endl;
    }
}
0