結果
問題 | No.1338 Giant Class |
ユーザー | cumin |
提出日時 | 2021-02-06 19:40:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,741 bytes |
コンパイル時間 | 2,090 ms |
コンパイル使用メモリ | 203,356 KB |
実行使用メモリ | 814,376 KB |
最終ジャッジ日時 | 2024-07-03 07:39:29 |
合計ジャッジ時間 | 6,272 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 24 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 48 ms
72,572 KB |
testcase_07 | AC | 54 ms
73,056 KB |
testcase_08 | AC | 26 ms
25,404 KB |
testcase_09 | AC | 20 ms
9,692 KB |
testcase_10 | AC | 40 ms
26,164 KB |
testcase_11 | AC | 22 ms
64,168 KB |
testcase_12 | AC | 20 ms
6,944 KB |
testcase_13 | RE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
//#pragma GCC target("avx2") //#pragma GCC optimize("O3") //#pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> #define ll long long #define ull unsigned long long #define ld long double #define rep(i, n) for(int i = 0; i < n; ++i) #define rep2(i, a, b) for(int i = a; i <= b; ++i) #define rrep(i, a, b) for(int i = a; i >= b; --i) #define pii pair<int, int> #define pll pair<ll, ll> #define fi first #define se second #define pb push_back #define eb emplace_back #define vi vector<int> #define vll vector<ll> #define vpii vector<pii> #define vpll vector<pll> #define vvi(a,b,c,d) vector<vector<int>> a(b,vector<int>(c,d)); #define vvll(a,b,c,d) vector<vector<ll>> a(b,vector<ll>(c,d)); #define all(a) a.begin(), a.end() #define rall(a) a.rbegin(), a.rend() #define sz(c) ((ll)(c).size()) #define endl '\n' using namespace std; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } //const int MOD = 1000000007; //const int MOD = 998244353; const ll INF = 1e18+1; const int inf = 1e9+1; const double PI = acos(-1); int dx[8] = {1, 0, -1, 0, 1, 1, -1, -1}; int dy[8] = {0, 1, 0, -1, -1, 1, 1, -1}; bool range(int y, int x, int h, int w){ if(y < 0 || x < 0 || y >= h || x >= w) return false; else return true; } const int M = 510000; signed main(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(10); ll h, w, q; cin >> h >> w >> q; ll ans = h*w; vll xx(w, h); while(q--){ ll y, x; cin >> y >> x; y--; x--; if(xx[x] > y){ ans -= xx[x] - y; xx[x] = y; } cout << ans << endl; } return 0; }