結果
問題 | No.1338 Giant Class |
ユーザー | paya2 |
提出日時 | 2021-01-22 00:47:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 750 bytes |
コンパイル時間 | 755 ms |
コンパイル使用メモリ | 91,068 KB |
実行使用メモリ | 817,304 KB |
最終ジャッジ日時 | 2024-06-07 11:56:35 |
合計ジャッジ時間 | 6,385 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 193 ms
5,760 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 158 ms
73,856 KB |
testcase_07 | AC | 214 ms
74,680 KB |
testcase_08 | AC | 132 ms
26,624 KB |
testcase_09 | AC | 120 ms
10,880 KB |
testcase_10 | AC | 220 ms
27,908 KB |
testcase_11 | AC | 38 ms
64,596 KB |
testcase_12 | AC | 145 ms
5,376 KB |
testcase_13 | RE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include<iostream> #include<vector> #include <cmath> #include <map> #include <set> #include <algorithm> #include <string> #include <iomanip> #include <queue> #define rep(i,n) for (int i= 0;i<(n);++i) using namespace std; typedef long long ll; using Graph = vector<vector<int>>; int main() { ll H , W , Q; cin >> H >> W >> Q ; ll y[Q] , x[Q] ; ll h[W] ; for(ll j = 0 ; j < W ; j++){ h[j] = H ; ; } for(ll i = 0 ; i < Q ; i++){ cin >> y[i] >> x[i] ; } ll ans = H * W ; for(ll i= 0 ; i < Q ; i++){ //cout << h[x[i]-1] << endl; if(h[x[i]-1] >= y[i]){ ans -= h[x[i]-1] - y[i] + 1 ; h[x[i]-1] = y[i] -1; } cout << ans << endl; } }