結果

問題 No.1338 Giant Class
ユーザー 沙耶花沙耶花
提出日時 2021-01-15 21:36:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 207,000 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-05-04 22:58:26
合計ジャッジ時間 6,337 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 182 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 160 ms
7,424 KB
testcase_07 AC 232 ms
9,088 KB
testcase_08 AC 140 ms
7,040 KB
testcase_09 AC 132 ms
6,912 KB
testcase_10 AC 256 ms
9,600 KB
testcase_11 AC 22 ms
5,376 KB
testcase_12 AC 180 ms
6,528 KB
testcase_13 AC 155 ms
7,040 KB
testcase_14 AC 41 ms
5,376 KB
testcase_15 AC 57 ms
5,376 KB
testcase_16 AC 19 ms
5,376 KB
testcase_17 AC 141 ms
6,912 KB
testcase_18 AC 37 ms
5,376 KB
testcase_19 AC 70 ms
5,376 KB
testcase_20 AC 271 ms
9,728 KB
testcase_21 AC 307 ms
9,728 KB
testcase_22 AC 285 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000

int main(){
	
	long long H,W,Q;
	cin>>H>>W>>Q;
	
	long long ans = H*W;
	
	map<long long,long long> mp;
	
	rep(_,Q){
		long long X,Y;
		cin>>X>>Y;
		
		if(mp.count(Y)){
			if(mp[Y]>X){
				ans -= mp[Y]-1;
				mp[Y] = X;
				ans += X-1;
			}
				
		}
		else{
			ans -= H;
			mp[Y] = X;
			ans += X-1;
		}
		cout<<ans<<endl;
	}
	
    return 0;
}
0