結果

問題 No.2657 Falling Block Game
ユーザー nononnonon
提出日時 2024-03-01 22:16:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,124 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 205,844 KB
実行使用メモリ 15,540 KB
最終ジャッジ日時 2024-09-29 14:17:57
合計ジャッジ時間 5,918 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
15,540 KB
testcase_01 AC 5 ms
8,512 KB
testcase_02 AC 5 ms
9,404 KB
testcase_03 AC 4 ms
8,644 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/segtree>
using namespace std;
int op(int a, int b){return a<b?a:b;}
int e(){return 1<<30;}
int H,W,L[1<<17],R[1<<17];
string S[1<<17];
int dp[1<<17],ep[1<<17];
void initLR(int i)
{
    L[0]=0;
    for(int j=1;j<W;j++)L[j]=(S[i][j]=='#'?j+1:L[j-1]);
    R[W]=W;
    for(int j=W-1;j>=0;j--)R[j]=(S[i][j]=='#'?j:R[j+1]);
}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin>>H>>W;
    for(int i=0;i<H;i++)cin>>S[i];
    for(int i=H-2;i>=0;i--)
    {
        initLR(i);
        for(int j=0;j<W;j++)ep[j]=1<<30;
        atcoder::segtree<int,op,e>seg(W);
        for(int j=0;j<W;j++)seg.set(j,dp[j]);
        for(int j=0;j<W;j++)if(S[i][j]!='#')
        {
            int l=-1,r=W;
            while(r-l>1)
            {
                int m=(l+r)/2;
                int f=seg.prod(max(L[j],j-m),min(R[j],j+m+1));
                if(f<=m)r=m;
                else l=m;
            }
            ep[j]=r;
        }
        // for(int j=0;j<W;j++)cout<<(ep[j]==1<<30?-1:ep[j])<<' ';cout<<endl;
        swap(dp,ep);
    }
    for(int i=0;i<W;i++)cout<<dp[i]<<endl;
}
0