結果

問題 No.2657 Falling Block Game
ユーザー てんぷらてんぷら
提出日時 2024-02-29 00:13:54
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 1,416 bytes
コンパイル時間 4,880 ms
コンパイル使用メモリ 310,820 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-29 12:27:16
合計ジャッジ時間 10,718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 13 ms
6,400 KB
testcase_05 AC 383 ms
5,760 KB
testcase_06 AC 164 ms
5,248 KB
testcase_07 AC 376 ms
5,760 KB
testcase_08 AC 144 ms
5,248 KB
testcase_09 AC 24 ms
6,528 KB
testcase_10 AC 138 ms
5,760 KB
testcase_11 AC 140 ms
5,720 KB
testcase_12 AC 141 ms
5,888 KB
testcase_13 AC 140 ms
5,720 KB
testcase_14 AC 136 ms
5,760 KB
testcase_15 AC 138 ms
5,888 KB
testcase_16 AC 136 ms
5,760 KB
testcase_17 AC 144 ms
5,852 KB
testcase_18 AC 142 ms
5,760 KB
testcase_19 AC 138 ms
5,760 KB
testcase_20 AC 50 ms
6,816 KB
testcase_21 AC 49 ms
6,820 KB
testcase_22 AC 50 ms
6,816 KB
testcase_23 AC 49 ms
6,820 KB
testcase_24 AC 50 ms
6,820 KB
testcase_25 AC 52 ms
6,820 KB
testcase_26 AC 51 ms
6,820 KB
testcase_27 AC 51 ms
6,820 KB
testcase_28 AC 51 ms
6,816 KB
testcase_29 AC 48 ms
6,820 KB
testcase_30 AC 25 ms
6,816 KB
testcase_31 AC 27 ms
6,820 KB
testcase_32 AC 28 ms
6,820 KB
testcase_33 AC 28 ms
6,816 KB
testcase_34 AC 27 ms
6,820 KB
testcase_35 AC 25 ms
6,816 KB
testcase_36 AC 25 ms
6,820 KB
testcase_37 AC 27 ms
6,816 KB
testcase_38 AC 26 ms
6,816 KB
testcase_39 AC 26 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
using ll = long long;
using ull = unsigned long long;
#define rep(i, n) for(int i = 0; i < (int)(n); i++)
#define REP(i, m, n) for(int i = (int)(m); i < (int)(n); i++)
using namespace std;
using namespace atcoder;
using mint = modint998244353;
const int inf = 1000000007;
const ll longinf = 1ll << 60;

int op(int x, int y) {
    return min(x, y);
}

int e() {
    return inf;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int h, w;
    cin >> h >> w;
    vector<string> s(h);
    rep(i, h) cin >> s[i];
    vector<int> dp(w, 0);
    for(int i = h - 2; i >= 0; i--) {
        vector<int> ndp(w, inf);
        atcoder::segtree<int, op, e> sg(dp);
        int l = 0, r = 0;
        rep(j, w) {
            if(s[i][j] == '#') {
                l = j + 1;
                r = j + 1;
                continue;
            }
            while(r < w && s[i][r] == '.')
                ++r;
            int ok = w, ng = -1;
            while(ok - ng > 1) {
                int mid = (ok + ng) / 2;
                int val = sg.prod(max(l, j - mid), min(r, j + mid + 1));
                if(val <= mid) {
                    ok = mid;
                } else {
                    ng = mid;
                }
            }
            ndp[j] = ok;
        }
        dp.swap(ndp);
    }
    rep(i, w) cout << dp[i] << "\n";
    return 0;
}
0