結果
問題 | No.1338 Giant Class |
ユーザー | outline |
提出日時 | 2021-01-15 21:49:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,289 bytes |
コンパイル時間 | 1,298 ms |
コンパイル使用メモリ | 134,880 KB |
実行使用メモリ | 816,164 KB |
最終ジャッジ日時 | 2024-11-26 14:08:23 |
合計ジャッジ時間 | 6,176 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 25 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 37 ms
38,016 KB |
testcase_07 | AC | 46 ms
38,144 KB |
testcase_08 | AC | 27 ms
14,336 KB |
testcase_09 | AC | 19 ms
6,528 KB |
testcase_10 | AC | 41 ms
14,592 KB |
testcase_11 | AC | 17 ms
33,548 KB |
testcase_12 | AC | 21 ms
5,248 KB |
testcase_13 | RE | - |
testcase_14 | AC | 202 ms
397,872 KB |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <array> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <fstream> #include <complex> #include <cstring> #include <unordered_map> #include <unordered_set> using namespace std; using ll = long long; constexpr int INF = 1001001001; constexpr int mod = 1000000007; // constexpr int mod = 998244353; template<class T> inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template<class T> inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int H, W, Q; cin >> H >> W >> Q; ll ans = (ll)H * W; vector<int> upper(W + 1, H + 1); for(int q = 0; q < Q; ++q){ int R, C; cin >> R >> C; if(R < upper[C]){ ans -= upper[C] - R; upper[C] = R; } cout << ans << '\n'; } return 0; }