結果

問題 No.2657 Falling Block Game
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2024-03-01 23:31:00
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 2,077 bytes
コンパイル時間 2,943 ms
コンパイル使用メモリ 260,612 KB
実行使用メモリ 16,976 KB
最終ジャッジ日時 2024-09-29 15:17:08
合計ジャッジ時間 9,686 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 25 ms
6,820 KB
testcase_05 AC 229 ms
16,228 KB
testcase_06 AC 190 ms
10,040 KB
testcase_07 AC 185 ms
11,648 KB
testcase_08 AC 85 ms
6,816 KB
testcase_09 AC 75 ms
6,816 KB
testcase_10 AC 224 ms
16,744 KB
testcase_11 AC 226 ms
16,844 KB
testcase_12 AC 227 ms
16,724 KB
testcase_13 WA -
testcase_14 AC 226 ms
16,748 KB
testcase_15 AC 224 ms
16,848 KB
testcase_16 AC 224 ms
16,716 KB
testcase_17 AC 218 ms
16,744 KB
testcase_18 AC 229 ms
16,852 KB
testcase_19 AC 232 ms
16,744 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 77 ms
6,816 KB
testcase_31 AC 80 ms
6,820 KB
testcase_32 AC 78 ms
6,820 KB
testcase_33 AC 77 ms
6,816 KB
testcase_34 AC 78 ms
6,816 KB
testcase_35 AC 77 ms
6,820 KB
testcase_36 AC 78 ms
6,816 KB
testcase_37 AC 77 ms
6,816 KB
testcase_38 AC 76 ms
6,820 KB
testcase_39 AC 75 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;



int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int h,w;
    cin >> h >> w;
    vector<string> S(h);
    for (auto &s: S) cin >> s;

    vector<int> dp(w,0);

    const int INF = 1e9;
    for (int i = h-2; i >= 0; i--){

        vector<int> ndp(w,INF);

        vector<vector<pair<int,int>>> event(w);

        for (int x = 0; x < w; x++){
            int cost = dp[x];
            event[max(0,x-cost)].push_back({cost,1});
        }
        for (int x = 0; x < w; x++){
            event[x].push_back({x,0});
        }

        for (int x = 0; x < w; x++){
            int cost = dp[x];
            event[min(w-1,x+cost)].push_back({cost,-1});
        }

        multiset<int> ms;
        ms.insert(INF);

        for (int x = 0; x < w; x++){

            for (auto [c,t] : event[x]){
                if (t == 1) {
                    ms.insert(c);
                } else if (t == 0){
                    if (S[i][c] == '#') continue;

                    ndp[c] = *ms.begin();

                } else{
                    auto it = ms.find(c);

                    // イテレータがマルチセットの終端でない、つまり要素が見つかった場合、その要素を削除
                    if (it != ms.end()) {
                        ms.erase(it);
                    } else{
                        assert (0);
                    }
                }
                
            }
        }

        for (int x = 1; x < w; x++){
            if (S[i][x] == '#') continue;
            ndp[x] = min(ndp[x],ndp[x-1]+1);
        }
        for (int x = w-2;x >= 0; x--){
            if (S[i][x] == '#') continue;
            ndp[x] = min(ndp[x],ndp[x+1]+1);
        }

        for (int x = 0;x < w; x++){
            if (S[i][x] == '#'){
                ndp[x] = INF;
            }
            if (i > 0 && S[i-1][x] != '.'){
                ndp[x] = INF;
            }
        }
        swap(dp,ndp);
    }

    for (auto a: dp){
        cout << a << endl;
    }




    return 0;
}
0