結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 28 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 45 ms
7,296 KB
testcase_07 AC 67 ms
8,960 KB
testcase_08 AC 42 ms
7,040 KB
testcase_09 AC 38 ms
6,656 KB
testcase_10 AC 73 ms
9,600 KB
testcase_11 AC 8 ms
5,248 KB
testcase_12 AC 49 ms
6,400 KB
testcase_13 AC 41 ms
6,912 KB
testcase_14 AC 12 ms
5,248 KB
testcase_15 AC 17 ms
5,248 KB
testcase_16 AC 6 ms
5,248 KB
testcase_17 AC 44 ms
6,912 KB
testcase_18 AC 12 ms
5,248 KB
testcase_19 AC 20 ms
5,248 KB
testcase_20 AC 84 ms
9,600 KB
testcase_21 AC 82 ms
9,600 KB
testcase_22 AC 79 ms
9,600 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