結果

問題 No.1323 うしらずSwap
ユーザー maine_honzukimaine_honzuki
提出日時 2020-12-20 00:35:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,558 bytes
コンパイル時間 2,923 ms
コンパイル使用メモリ 218,460 KB
実行使用メモリ 13,256 KB
最終ジャッジ日時 2023-10-21 09:56:19
合計ジャッジ時間 8,349 ms
ジャッジサーバーID
(参考情報)
judge9 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
4,348 KB
testcase_11 WA -
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 64 ms
12,776 KB
testcase_17 AC 83 ms
12,776 KB
testcase_18 AC 64 ms
12,776 KB
testcase_19 AC 85 ms
12,776 KB
testcase_20 AC 64 ms
12,776 KB
testcase_21 AC 64 ms
12,776 KB
testcase_22 AC 85 ms
12,776 KB
testcase_23 AC 64 ms
12,776 KB
testcase_24 AC 85 ms
12,776 KB
testcase_25 AC 64 ms
12,776 KB
testcase_26 AC 62 ms
12,776 KB
testcase_27 AC 67 ms
12,776 KB
testcase_28 AC 70 ms
13,164 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 114 ms
13,104 KB
testcase_34 AC 108 ms
13,136 KB
testcase_35 AC 106 ms
13,148 KB
testcase_36 AC 105 ms
13,180 KB
testcase_37 AC 103 ms
13,148 KB
testcase_38 AC 98 ms
13,112 KB
testcase_39 AC 99 ms
13,132 KB
testcase_40 AC 99 ms
13,152 KB
testcase_41 AC 102 ms
13,184 KB
testcase_42 AC 97 ms
13,148 KB
testcase_43 AC 56 ms
13,152 KB
testcase_44 AC 66 ms
13,132 KB
testcase_45 AC 64 ms
13,176 KB
testcase_46 AC 68 ms
13,132 KB
testcase_47 AC 58 ms
13,152 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 3 ms
4,348 KB
testcase_60 AC 2 ms
4,348 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int H, W, ax, ay, bx, by;
vector<string> S;


int main() {
    cin >> H >> W >> ax >> ay >> bx >> by;
    ax--;
    ay--;
    bx--;
    by--;
    S.resize(H);
    for (int i = 0; i < H; i++) {
        cin >> S[i];
        for (auto& c : S[i])
            if (c == '#')
                c = 1;
            else
                c = 0;
    }

    const int dx[] = {1, 0, -1, 0};
    const int dy[] = {0, -1, 0, 1};

    queue<pair<int, pair<int, int>>> que;
    que.push(make_pair(0, make_pair(ax, ay)));
    vector<vector<int>> dist(H, vector<int>(W, -1));
    dist[ax][ay] = 0;
    que.push(make_pair(0, make_pair(ax, ay)));
    while (!que.empty()) {
        auto p = que.front();
        que.pop();
        int d = p.first, now_x = p.second.first, now_y = p.second.second;
        if (now_x == bx && now_y == by)
            continue;
        for (int i = 0; i < 4; i++) {
            int nxt_x = now_x + dx[i], nxt_y = now_y + dy[i];
            if (S[nxt_x][nxt_y] == 1) {
                continue;
            }
            if (dist[nxt_x][nxt_y] == -1) {
                dist[nxt_x][nxt_y] = d + 1;
                que.push(make_pair(d + 1, make_pair(nxt_x, nxt_y)));
            }
        }
    }

    if (dist[bx][by] == -1) {
        cout << -1 << endl;
        return 0;
    }

    bool flag1 = false, flag2 = false;
    int now_x = bx, now_y = by, now_dist = dist[bx][by];
    while (!(now_x == ax && now_y == ay)) {
        int cnt1 = 0, cnt2 = 0, tmp_x, tmp_y;
        for (int i = 0; i < 4; i++) {
            int nxt_x = now_x + dx[i], nxt_y = now_y + dy[i];
            if (dist[nxt_x][nxt_y] == now_dist - 1) {
                cnt1++;
                tmp_x = nxt_x;
                tmp_y = nxt_y;
            }
            if (S[nxt_x][nxt_y] == 0)
                cnt2++;
        }
        if (cnt1 >= 2)
            flag1 = true;
        if (now_dist != dist[bx][by])
            if (cnt2 >= 3)
                flag2 = true;

        now_x = tmp_x;
        now_y = tmp_y;
        now_dist--;
    }
    if (flag1) {
        cout << dist[bx][by] * 2 << endl;
    } else if (flag2) {
        cout << dist[bx][by] * 2 + 2 << endl;
    } else {
        int ans = -1;
        vector<int> d;
        for (int i = 0; i < 4; i++) {
            int tmp = dist[bx + dx[i]][by + dy[i]];
            if (tmp != -1)
                d.emplace_back(tmp);
        }
        sort(d.begin(), d.end());
        if (d.size() >= 2) {
            ans = d[0] + d[1] + 2;
        }
        cout << ans << endl;
    }
}
0