結果
| 問題 | No.1338 Giant Class |
| コンテスト | |
| ユーザー |
Haa
|
| 提出日時 | 2021-01-15 21:40:48 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 314 ms / 2,000 ms |
| コード長 | 528 bytes |
| 記録 | |
| コンパイル時間 | 1,643 ms |
| コンパイル使用メモリ | 174,520 KB |
| 実行使用メモリ | 8,192 KB |
| 最終ジャッジ日時 | 2024-11-26 13:42:02 |
| 合計ジャッジ時間 | 6,507 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 21 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
constexpr ll MOD=1000000007;
constexpr ll INF=1e18;
int main(){
int h, w, q; cin >> h >> w >> q;
ll ans=(ll)h*w;
int x, y;
map<int,int> mp;
REP(i,q){
cin >> y >> x;
ans-=max(0,(h-y+1)-mp[x]);
cout << ans << endl;
mp[x]=max(mp[x],(h-y+1));
}
return 0;
}
Haa