結果

問題 No.2731 Two Colors
ユーザー 🦠みどりむし🦠みどりむし
提出日時 2024-04-05 00:02:37
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 460 ms / 3,000 ms
コード長 1,642 bytes
コンパイル時間 1,229 ms
コンパイル使用メモリ 103,088 KB
実行使用メモリ 11,640 KB
最終ジャッジ日時 2024-10-03 13:27:37
合計ジャッジ時間 8,193 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 458 ms
11,392 KB
testcase_01 AC 459 ms
11,392 KB
testcase_02 AC 460 ms
11,392 KB
testcase_03 AC 4 ms
6,820 KB
testcase_04 AC 23 ms
6,820 KB
testcase_05 AC 14 ms
6,816 KB
testcase_06 AC 58 ms
6,816 KB
testcase_07 AC 72 ms
6,816 KB
testcase_08 AC 11 ms
6,816 KB
testcase_09 AC 269 ms
9,568 KB
testcase_10 AC 5 ms
6,820 KB
testcase_11 AC 239 ms
11,640 KB
testcase_12 AC 268 ms
9,428 KB
testcase_13 AC 201 ms
9,120 KB
testcase_14 AC 117 ms
6,820 KB
testcase_15 AC 10 ms
6,820 KB
testcase_16 AC 97 ms
6,816 KB
testcase_17 AC 146 ms
7,216 KB
testcase_18 AC 24 ms
6,816 KB
testcase_19 AC 100 ms
6,816 KB
testcase_20 AC 178 ms
7,552 KB
testcase_21 AC 27 ms
6,816 KB
testcase_22 AC 266 ms
10,260 KB
testcase_23 AC 63 ms
6,816 KB
testcase_24 AC 32 ms
6,820 KB
testcase_25 AC 3 ms
6,816 KB
testcase_26 AC 216 ms
8,552 KB
testcase_27 AC 269 ms
10,468 KB
testcase_28 AC 165 ms
8,296 KB
testcase_29 AC 51 ms
6,816 KB
testcase_30 AC 96 ms
6,816 KB
testcase_31 AC 56 ms
6,816 KB
testcase_32 AC 318 ms
11,604 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 2 ms
6,820 KB
testcase_35 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>

int main() {
    int h, w; std::cin >> h >> w;
    std::vector<std::vector<int>> a(h);
    for(auto& row : a) {
        row.resize(w);
        for(auto& v : row) std::cin >> v;
    }

    using P = std::pair<int, std::pair<int, int>>;
    std::priority_queue<P, std::vector<P>, std::greater<P>> que[2];
    que[0].emplace(a[0][1], std::make_pair(0, 1));
    que[0].emplace(a[1][0], std::make_pair(1, 0));
    que[1].emplace(a[h - 1][w - 2], std::make_pair(h - 1, w - 2));
    que[1].emplace(a[h - 2][w - 1], std::make_pair(h - 2, w - 1));

    std::vector<std::vector<int>> color(h);
    for(auto& row : color) {
        row.resize(w, -1);
    }
    color[0][0] = 0;
    color[h - 1][w - 1] = 1;

    for(int t = 0; ;) {
        auto& cands = que[t % 2];
        auto [ _, p ] = cands.top(); cands.pop();
        auto [ i, j ] = p;
        if(color[i][j] >= 0) continue;

        color[i][j] = t % 2;
        // std::cerr << t << " " << i << " " << j << "\n";

        constexpr std::pair<int, int> DIRS[] = { { 0, 1 }, { 1, 0 }, { 0, -1 }, { -1, 0 } };

        for(const auto& [ di, dj ] : DIRS) {
            if(i + di >= h || i + di < 0) continue;
            if(j + dj >= w || j + dj < 0) continue;

            if(color[i + di][j + dj] == ((t + 1) % 2)) {
                std::cout << t + 1 << "\n";
                return 0;
            }

            if(color[i + di][j + dj] == -1) {
                // std::cerr << i + di << " " << j + dj << "\n";
                cands.emplace(a[i + di][j + dj], std::make_pair(i + di, j + dj));
            }
        }

        ++t;
    }
}
0