結果

問題 No.2731 Two Colors
ユーザー nu50218nu50218
提出日時 2024-04-19 22:24:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 367 ms / 3,000 ms
コード長 2,307 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 208,912 KB
実行使用メモリ 16,632 KB
最終ジャッジ日時 2024-10-11 15:53:39
合計ジャッジ時間 7,621 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 367 ms
12,288 KB
testcase_01 AC 367 ms
12,160 KB
testcase_02 AC 366 ms
12,288 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 14 ms
5,760 KB
testcase_05 AC 12 ms
6,124 KB
testcase_06 AC 35 ms
6,244 KB
testcase_07 AC 34 ms
6,856 KB
testcase_08 AC 8 ms
5,248 KB
testcase_09 AC 114 ms
12,016 KB
testcase_10 AC 5 ms
5,248 KB
testcase_11 AC 152 ms
16,632 KB
testcase_12 AC 113 ms
12,008 KB
testcase_13 AC 128 ms
14,424 KB
testcase_14 AC 57 ms
11,008 KB
testcase_15 AC 8 ms
5,248 KB
testcase_16 AC 60 ms
8,472 KB
testcase_17 AC 76 ms
8,756 KB
testcase_18 AC 16 ms
5,248 KB
testcase_19 AC 66 ms
11,248 KB
testcase_20 AC 73 ms
10,084 KB
testcase_21 AC 23 ms
10,376 KB
testcase_22 AC 130 ms
11,572 KB
testcase_23 AC 38 ms
9,392 KB
testcase_24 AC 22 ms
7,740 KB
testcase_25 AC 7 ms
7,680 KB
testcase_26 AC 97 ms
9,876 KB
testcase_27 AC 126 ms
13,856 KB
testcase_28 AC 91 ms
9,836 KB
testcase_29 AC 31 ms
5,248 KB
testcase_30 AC 51 ms
9,500 KB
testcase_31 AC 40 ms
8,756 KB
testcase_32 AC 165 ms
12,060 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define debug(...) ((void)0)
#define postprocess(...) ((void)0)

using namespace std;
using ll = long long;
using ld = long double;

int A[1010][1010];
bool colored[1010][1010];
int color[1010][1010];

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

void solve([[maybe_unused]] int test) {
    int H, W;
    cin >> H >> W;

    for (int i = 0; i < H; i++) {
        for (int j = 0; j < W; j++) {
            cin >> A[i][j];
            A[i][j] *= -1;
        }
    }

    colored[0][0] = true;
    colored[H - 1][W - 1] = true;
    color[0][0] = 1;
    color[H - 1][W - 1] = 0;

    priority_queue<pair<int, pair<int, int>>> pque0, pque1;
    pque0.push({A[1][0], {1, 0}});
    pque0.push({A[0][1], {0, 1}});
    pque1.push({A[H - 2][W - 1], {H - 2, W - 1}});
    pque1.push({A[H - 1][W - 2], {H - 1, W - 2}});

    int round = 1;
    while (true) {
        assert(!pque0.empty());

        bool done = false;
        int nx = 0;
        int ny = 0;

        while (!pque0.empty()) {
            auto f = pque0.top();
            pque0.pop();

            auto [x, y] = f.second;
            if (colored[x][y]) {
                continue;
            }

            nx = x;
            ny = y;
            color[nx][ny] = 2 - (round % 2);
            colored[nx][ny] = true;
            done = true;

            for (int k = 0; k < 4; k++) {
                int nx2 = nx + dx[k];
                int ny2 = ny + dy[k];

                if (nx2 < 0 || nx2 >= H || ny2 < 0 || ny2 >= W) {
                    continue;
                }

                pque0.push({A[nx2][ny2], {nx2, ny2}});
            }

            break;
        }

        assert(done);
        bool finished = false;
        for (int k = 0; k < 4; k++) {
            int nx2 = nx + dx[k];
            int ny2 = ny + dy[k];

            if (nx2 < 0 || nx2 >= H || ny2 < 0 || ny2 >= W) {
                continue;
            }

            if ((color[nx][ny] | color[nx2][ny2]) == 3) finished = true;
        }
        if (finished) break;

        round++;
        swap(pque0, pque1);
    }

    cout << round << endl;
}

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

    int t = 1;
    // cin >> t;
    for (int i = 1; i <= t; i++) {
        solve(i);
    }

    postprocess();
}
0