結果
問題 | No.2657 Falling Block Game |
ユーザー | SnowBeenDiding |
提出日時 | 2024-03-01 22:35:08 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 258 ms / 2,000 ms |
コード長 | 5,160 bytes |
コンパイル時間 | 5,497 ms |
コンパイル使用メモリ | 324,752 KB |
実行使用メモリ | 11,936 KB |
最終ジャッジ日時 | 2024-09-29 14:34:13 |
合計ジャッジ時間 | 11,139 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 38 ms
11,900 KB |
testcase_05 | AC | 231 ms
11,760 KB |
testcase_06 | AC | 180 ms
8,768 KB |
testcase_07 | AC | 258 ms
11,884 KB |
testcase_08 | AC | 106 ms
6,816 KB |
testcase_09 | AC | 83 ms
11,776 KB |
testcase_10 | AC | 195 ms
11,868 KB |
testcase_11 | AC | 191 ms
11,884 KB |
testcase_12 | AC | 201 ms
11,884 KB |
testcase_13 | AC | 204 ms
11,884 KB |
testcase_14 | AC | 196 ms
11,888 KB |
testcase_15 | AC | 196 ms
11,884 KB |
testcase_16 | AC | 197 ms
11,880 KB |
testcase_17 | AC | 197 ms
11,740 KB |
testcase_18 | AC | 199 ms
11,760 KB |
testcase_19 | AC | 194 ms
11,884 KB |
testcase_20 | AC | 111 ms
6,816 KB |
testcase_21 | AC | 112 ms
6,816 KB |
testcase_22 | AC | 110 ms
6,820 KB |
testcase_23 | AC | 111 ms
6,816 KB |
testcase_24 | AC | 111 ms
6,820 KB |
testcase_25 | AC | 110 ms
6,820 KB |
testcase_26 | AC | 109 ms
6,816 KB |
testcase_27 | AC | 108 ms
6,816 KB |
testcase_28 | AC | 110 ms
6,820 KB |
testcase_29 | AC | 113 ms
6,820 KB |
testcase_30 | AC | 84 ms
11,892 KB |
testcase_31 | AC | 85 ms
11,904 KB |
testcase_32 | AC | 83 ms
11,904 KB |
testcase_33 | AC | 84 ms
11,788 KB |
testcase_34 | AC | 86 ms
11,884 KB |
testcase_35 | AC | 87 ms
11,904 KB |
testcase_36 | AC | 86 ms
11,832 KB |
testcase_37 | AC | 84 ms
11,896 KB |
testcase_38 | AC | 84 ms
11,936 KB |
testcase_39 | AC | 85 ms
11,904 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> #define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++) using namespace std; using namespace atcoder; typedef long long ll; const int inf = 1e9; struct RMUQ { using S = ll; using F = ll; public: RMUQ() : RMUQ(0) {} RMUQ(int n) : RMUQ(std::vector<S>(n, e())) {} RMUQ(const std::vector<S>& v) : _n(int(v.size())) { log = ceil_pow2(_n); size = 1 << log; d = std::vector<S>(2 * size, e()); lz = std::vector<F>(size, id()); for (int i = 0; i < _n; i++) d[size + i] = v[i]; for (int i = size - 1; i >= 1; i--) { update(i); } } void set(int p, S x) { assert(0 <= p && p < _n); p += size; for (int i = log; i >= 1; i--) push(p >> i); d[p] = x; for (int i = 1; i <= log; i++) update(p >> i); } S get(int p) { assert(0 <= p && p < _n); p += size; for (int i = log; i >= 1; i--) push(p >> i); return d[p]; } S prod(int l, int r) { assert(0 <= l && l <= r && r <= _n); if (l == r) return e(); l += size; r += size; for (int i = log; i >= 1; i--) { if (((l >> i) << i) != l) push(l >> i); if (((r >> i) << i) != r) push(r >> i); } S sml = e(), smr = e(); while (l < r) { if (l & 1) sml = op(sml, d[l++]); if (r & 1) smr = op(d[--r], smr); l >>= 1; r >>= 1; } return op(sml, smr); } S all_prod() { return d[1]; } void apply(int p, F f) { assert(0 <= p && p < _n); p += size; for (int i = log; i >= 1; i--) push(p >> i); d[p] = mapping(f, d[p]); for (int i = 1; i <= log; i++) update(p >> i); } void apply(int l, int r, F f) { assert(0 <= l && l <= r && r <= _n); if (l == r) return; l += size; r += size; for (int i = log; i >= 1; i--) { if (((l >> i) << i) != l) push(l >> i); if (((r >> i) << i) != r) push((r - 1) >> i); } { int l2 = l, r2 = r; while (l < r) { if (l & 1) all_apply(l++, f); if (r & 1) all_apply(--r, f); l >>= 1; r >>= 1; } l = l2; r = r2; } for (int i = 1; i <= log; i++) { if (((l >> i) << i) != l) update(l >> i); if (((r >> i) << i) != r) update((r - 1) >> i); } } S op(S a, S b) { return min(a, b); } S e() { return 1e18; } S mapping(F f, S x) { return f != id() ? f : x; } F composition(F f, F g) { return f != id() ? f : g; } F id() { return -1e18; } int ceil_pow2(int n) { int x = 0; while ((1U << x) < (unsigned int)(n)) x++; return x; } ll operator[](int i) { return get(i); } void out() { for (int i = 0; i < _n; i++) cout << get(i) << " \n"[i == _n - 1]; } void err() { for (int i = 0; i < _n; i++) cerr << get(i) << " \n"[i == _n - 1]; } private: int _n, size, log; std::vector<S> d; std::vector<F> lz; void update(int k) { d[k] = op(d[2 * k], d[2 * k + 1]); } void all_apply(int k, F f) { d[k] = mapping(f, d[k]); if (k < size) lz[k] = composition(f, lz[k]); } void push(int k) { all_apply(2 * k, lz[k]); all_apply(2 * k + 1, lz[k]); lz[k] = id(); } }; vector<int> f(vector<int> a, string s) { int n = a.size(); vector<int> ret(n); RMUQ rsuq(n); vector<pair<int, int>> ord; rep(i, 0, n) ord.emplace_back(a[i], i); sort(ord.rbegin(), ord.rend()); vector<int> lb(n), rb(n); int id = 0; rep(i, 0, n) { if (s[i] == '#') id = i + 1; lb[i] = id; } id = n - 1; for (int i = n - 1; i >= 0; i--) { if (s[i] == '#') id = i - 1; rb[i] = id; } rep(i, 0, n) { int idx = ord[i].second; if (s[idx] == '#') continue; int l = max({0, idx - a[idx], lb[idx]}); int r = min({n, idx + a[idx] + 1, rb[idx] + 1}); rsuq.apply(l, r, a[idx]); } rep(i, 0, n) { ll nw = rsuq.get(i); if (nw >= 1e18 / 2) ret[i] = inf; else ret[i] = nw; } rep(i, 1, n) { if (s[i] != '#') ret[i] = min(ret[i], ret[i - 1] + 1); } for (int i = n - 2; i >= 0; i--) { if (s[i] != '#') ret[i] = min(ret[i], ret[i + 1] + 1); } return ret; } int main() { int h, w; cin >> h >> w; vector<string> s(h); rep(i, 0, h) cin >> s[i]; vector<vector<int>> dp(h, vector<int>(w, 0)); for (int i = h - 2; i >= 0; i--) { auto v = f(dp[i + 1], s[i]); rep(j, 0, w) dp[i][j] = v[j]; } // rep(i, 0, h) { // rep(j, 0, w) { // if (dp[i][j] >= inf / 2) // cerr << "x "; // else // cerr << dp[i][j] << " "; // } // cerr << endl; // } rep(i, 0, w) cout << dp[0][i] << endl; }