結果

問題 No.1338 Giant Class
ユーザー snrnsidysnrnsidy
提出日時 2021-11-10 02:24:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 2,354 ms
コンパイル使用メモリ 206,952 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-04-30 01:25:13
合計ジャッジ時間 5,214 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 30 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 57 ms
7,424 KB
testcase_07 AC 88 ms
8,960 KB
testcase_08 AC 51 ms
7,168 KB
testcase_09 AC 48 ms
6,656 KB
testcase_10 AC 104 ms
9,472 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 64 ms
6,400 KB
testcase_13 AC 55 ms
7,040 KB
testcase_14 AC 13 ms
5,376 KB
testcase_15 AC 19 ms
5,376 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 52 ms
7,040 KB
testcase_18 AC 13 ms
5,376 KB
testcase_19 AC 22 ms
5,376 KB
testcase_20 AC 103 ms
9,728 KB
testcase_21 AC 104 ms
9,728 KB
testcase_22 AC 105 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
 
using namespace std;

int main(void)
{
    cin.tie(0);
    ios::sync_with_stdio(false);

	long long int H,W,Q;
	map <long long int,long long int> memo;
	long long int Y,X;

	cin >> H >> W >> Q;

	long long int res = H*W;

	for(int i=0;i<Q;i++)
	{
		cin >> Y >> X;
		if(memo.find(X)==memo.end())
		{
			res -= (H-Y+1);
			memo[X] = Y;
		}
		else
		{
			if(memo[X] > Y)
			{
				res -= (memo[X]-Y);
				memo[X] = Y;
			}
		}
		cout << res << '\n';

	}
    return 0;
}
0