結果

問題 No.2328 Build Walls
ユーザー Ryoga.exeRyoga.exe
提出日時 2023-05-28 15:33:24
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,071 bytes
コンパイル時間 2,840 ms
コンパイル使用メモリ 205,048 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-12-27 07:20:30
合計ジャッジ時間 6,145 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 75 ms
8,576 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 11 ms
5,248 KB
testcase_20 WA -
testcase_21 AC 66 ms
8,192 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 136 ms
13,312 KB
testcase_29 WA -
testcase_30 AC 141 ms
13,312 KB
testcase_31 AC 138 ms
13,312 KB
testcase_32 WA -
testcase_33 AC 149 ms
13,312 KB
testcase_34 AC 149 ms
13,312 KB
testcase_35 AC 159 ms
13,184 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
constexpr ll INF64 = 1LL<<60;
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }

int main() {
    int h, w;
    cin >> h >> w;
    h -= 2;
    vector a(h, vector(w, 0ll));
    for (int i = 0; i < h; i++) {
        for (int j = 0; j < w; j++) {
            cin >> a[i][j];
            if (a[i][j] == -1) {
                a[i][j] = INF64;
            }
        }
    }
    vector dp(h, vector(w, INF64));
    for (int i = 0; i < h; i++) {
        dp[i][0] = a[i][0];
    }
    for (int j = 0; j < w - 1; j++) {
        for (int i = 0; i < h; i++) {
            for (const auto diff : { -1, 0, 1 }) {
                auto nxt = i + diff;
                if (0 <= nxt && nxt < h) {
                    chmin(dp[nxt][j + 1], a[nxt][j + 1] + dp[i][j]);
                }
            }
        }
    }
    ll ans = INF64;
    for (int i = 0; i < h; i++) {
        chmin(ans, dp[i][w - 1]);
    }
    cout << (ans == INF64 ? -1 : ans) << endl;
    return 0;
}
0