結果

問題 No.971 いたずらっ子
ユーザー granddaifukugranddaifuku
提出日時 2020-06-03 21:54:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 1,203 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 177,364 KB
実行使用メモリ 39,040 KB
最終ジャッジ日時 2024-11-07 11:45:06
合計ジャッジ時間 4,613 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 226 ms
38,912 KB
testcase_01 AC 217 ms
38,912 KB
testcase_02 AC 157 ms
30,208 KB
testcase_03 AC 143 ms
39,040 KB
testcase_04 AC 134 ms
36,864 KB
testcase_05 AC 144 ms
39,040 KB
testcase_06 AC 109 ms
30,976 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 39 ms
12,928 KB
testcase_09 AC 37 ms
12,416 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define rep(i, n) for(int i = 0; i < (int)n; ++i)
#define FOR(i, a, b) for(int i = a; i < (int)b; ++i)
#define rrep(i, n) for(int i = ((int)n - 1); i >= 0; --i)

using ll = long long;
using ld = long double;

const ll INF = 1e18;
const int Inf = 1e9;
const double EPS = 1e-9;
const int MOD = 1e9 + 7;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(0);
    int h, w;
    cin >> h >> w;
    int dx[2] = {0, 1};
    int dy[2] = {1, 0};
    vector<string> s(h);
    vector<vector<ll> > dist(h, vector<ll>(w, INF));
    rep (i, h) cin >> s[i];
    queue<pair<int, int> > q;
    q.push({0, 0});
    dist[0][0] = 0;
    while (!q.empty()) {
        int x, y;
        x = q.front().first, y = q.front().second;
        q.pop();
        rep (i, 2) {
            int nx, ny;
            nx = x + dx[i];
            ny = y + dy[i];
            if (nx >= h || ny >= w) continue;
            ll tmp = dist[x][y] + 1;
            if (s[nx][ny] == 'k') tmp += nx + ny;
            if (tmp >= dist[nx][ny]) continue;
            dist[nx][ny] = tmp;
            q.push({nx, ny});
        }
    }
    cout << dist[h - 1][w - 1] << endl;
    
    return 0;
}

0