結果

問題 No.971 いたずらっ子
ユーザー Konton7Konton7
提出日時 2020-01-18 00:04:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,267 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 203,092 KB
実行使用メモリ 26,884 KB
最終ジャッジ日時 2024-06-26 02:10:17
合計ジャッジ時間 12,515 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 101 ms
26,708 KB
testcase_04 AC 100 ms
25,512 KB
testcase_05 AC 99 ms
26,884 KB
testcase_06 RE -
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 30 ms
9,440 KB
testcase_09 AC 28 ms
9,348 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 RE -
testcase_15 AC 2 ms
6,940 KB
testcase_16 RE -
testcase_17 AC 2 ms
6,940 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;

// #define DEBUG

int main()
{

#ifdef DEBUG
    cout << "DEBUG MODE" << endl;
    ifstream in("input.txt"); //for debug
    cin.rdbuf(in.rdbuf());    //for debug
#endif

    int h, w;
    const int inf = 1e9;
    cin >> h >> w;
    string field[h];
    int dist[h][w];
    int ans[h][w];
    for (int i = 0; i < h; i++)
        for (int j = 0; j < h; j++)
            ans[i][j] = inf;
    ans[0][0] = 0;

    for (int i = 0; i < h; i++)
        cin >> field[i];

    for (int i = 1; i < h; i++)
    {
        ans[i][0] = ans[i - 1][0] + 1;
        if (field[i][0] == 'k')
            ans[i][0] += i;
    }

    for (int j = 1; j < w; j++)
    {
        ans[0][j] = ans[0][j - 1] + 1;
        if (field[0][j] == 'k')
            ans[0][j] += j;
    }

    for (int i = 1; i < h; i++)
    {
        for (int j = 1; j < w; j++)
        {
            ans[i][j] = min(ans[i][j - 1], ans[i - 1][j]) + 1;
            if (field[i][j] == 'k')
                ans[i][j] += i + j;
        }
    }

    // for (int i = 0; i < h; i++)
    // {
    //     for (int j = 0; j < w; j++)
    //         cout << ans[i][j] << " ";
    //     cout << endl;
    // }
    cout << ans[--h][--w] << endl;
    return 0;
}
0