結果

問題 No.1338 Giant Class
ユーザー QCFiumQCFium
提出日時 2020-07-10 08:52:35
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 1,605 ms
コンパイル使用メモリ 172,804 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-10-10 19:32:01
合計ジャッジ時間 4,229 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}

int main() {
	int h = ri();
	int w = ri();
	int q = ri();
	std::map<int, int> used;
	int64_t res = (int64_t) h * w;
	for (int i = 0; i < q; i++) {
		int y = h - ri() + 1;
		int x = ri() - 1;
		res += used[x];
		res -= used[x] = std::max(used[x], y);
		printf("%" PRId64 "\n", res);
	}
	return 0;
}
0