結果

問題 No.1338 Giant Class
ユーザー leaf_1415leaf_1415
提出日時 2021-01-15 21:39:15
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 942 bytes
コンパイル時間 708 ms
コンパイル使用メモリ 90,576 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-05-04 23:02:37
合計ジャッジ時間 3,539 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 39 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 69 ms
7,296 KB
testcase_07 AC 104 ms
8,960 KB
testcase_08 AC 66 ms
7,040 KB
testcase_09 AC 62 ms
6,656 KB
testcase_10 AC 118 ms
9,472 KB
testcase_11 AC 10 ms
5,376 KB
testcase_12 AC 73 ms
6,400 KB
testcase_13 AC 64 ms
6,912 KB
testcase_14 AC 16 ms
5,376 KB
testcase_15 AC 24 ms
5,376 KB
testcase_16 AC 8 ms
5,376 KB
testcase_17 AC 64 ms
6,912 KB
testcase_18 AC 16 ms
5,376 KB
testcase_19 AC 28 ms
5,376 KB
testcase_20 AC 117 ms
9,728 KB
testcase_21 AC 117 ms
9,600 KB
testcase_22 AC 122 ms
9,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#include <utility>
#include <complex>
#define rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))
#define all(x) (x).begin(),(x).end()
#define inf 1e18
#define mod 1000000007

using namespace std;

typedef long long llint;
typedef long long ll;
typedef pair<llint, llint> P;

ll h, w, Q;
map<ll, ll> mp;

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> h >> w >> Q;
	ll ans = h*w, x, y;
	rep(i, 1, Q){
		cin >> y >> x;
		if(mp.count(x) == 0) mp[x] = h;
		ans -= mp[x];
		chmin(mp[x], y-1);
		ans += mp[x];
		cout << ans  << "\n";
	}
	flush(cout);
	
	return 0;
}
0