結果

問題 No.1338 Giant Class
ユーザー kotatsugamekotatsugame
提出日時 2021-01-15 21:30:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 732 ms
コンパイル使用メモリ 75,520 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-05-04 22:46:13
合計ジャッジ時間 4,781 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 179 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 146 ms
6,400 KB
testcase_07 AC 212 ms
7,680 KB
testcase_08 AC 150 ms
6,144 KB
testcase_09 AC 136 ms
6,016 KB
testcase_10 AC 249 ms
8,192 KB
testcase_11 AC 23 ms
5,376 KB
testcase_12 AC 169 ms
5,760 KB
testcase_13 AC 144 ms
6,144 KB
testcase_14 AC 36 ms
5,376 KB
testcase_15 AC 56 ms
5,376 KB
testcase_16 AC 19 ms
5,376 KB
testcase_17 AC 141 ms
6,144 KB
testcase_18 AC 38 ms
5,376 KB
testcase_19 AC 66 ms
5,376 KB
testcase_20 AC 274 ms
8,192 KB
testcase_21 AC 272 ms
8,064 KB
testcase_22 AC 278 ms
8,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<map>
using namespace std;
int H,W,Q;
map<int,int>mp;
main()
{
	cin>>H>>W>>Q;
	long ans=(long)H*W;
	for(;Q--;)
	{
		int x,y;cin>>x>>y;
		if(mp.find(y)==mp.end())
		{
			ans-=H+1-x;
			mp[y]=x;
		}
		else if(mp[y]>x)
		{
			ans-=mp[y]-x;
			mp[y]=x;
		}
		cout<<ans<<endl;
	}
}
0