結果

問題 No.2731 Two Colors
ユーザー t98slidert98slider
提出日時 2024-05-05 10:11:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 221 ms / 3,000 ms
コード長 1,309 bytes
コンパイル時間 2,105 ms
コンパイル使用メモリ 213,828 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-05-05 10:11:38
合計ジャッジ時間 7,840 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
11,136 KB
testcase_01 AC 195 ms
11,008 KB
testcase_02 AC 221 ms
11,136 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 9 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 23 ms
5,376 KB
testcase_07 AC 24 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 87 ms
9,068 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 96 ms
8,340 KB
testcase_12 AC 87 ms
8,924 KB
testcase_13 AC 77 ms
7,672 KB
testcase_14 AC 38 ms
6,016 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 36 ms
5,564 KB
testcase_17 AC 53 ms
6,372 KB
testcase_18 AC 11 ms
5,376 KB
testcase_19 AC 40 ms
5,432 KB
testcase_20 AC 55 ms
7,040 KB
testcase_21 AC 11 ms
5,376 KB
testcase_22 AC 94 ms
9,120 KB
testcase_23 AC 26 ms
5,376 KB
testcase_24 AC 13 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 73 ms
8,180 KB
testcase_27 AC 93 ms
9,328 KB
testcase_28 AC 62 ms
7,236 KB
testcase_29 AC 20 ms
5,376 KB
testcase_30 AC 35 ms
5,376 KB
testcase_31 AC 22 ms
5,376 KB
testcase_32 AC 115 ms
10,096 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int h, w;
    cin >> h >> w;
    vector<vector<int>> A(h, vector<int>(w)), B(h, vector<int>(w, -1));
    for(auto &&vec : A){
        for(auto &&v : vec) cin >> v;
    }
    A[0][0] = A[h - 1][w - 1] = 1;
    priority_queue<tuple<int,int,int>, vector<tuple<int,int,int>>, greater<tuple<int,int,int>>> pq1, pq2;
    pq1.emplace(0, 0, 0);
    pq2.emplace(0, h - 1, w - 1);
    B[0][0] = 0;
    B[h - 1][w - 1] = 1;
    for(int i = 0; i < h * w; i++){
        int s = i % 2;
        auto [v, y, x] = (s == 0 ? pq1.top() : pq2.top());
        (s == 0 ? pq1.pop() : pq2.pop());
        B[y][x] = s;
        for(int j = 0; j < 4; j++){
            int ny = y + (j == 0) - (j == 1);
            int nx = x + (j == 2) - (j == 3);
            if(ny < 0 || nx < 0 || ny >= h || nx >= w) continue;
            if(B[ny][nx] >= 0 && B[ny][nx] != s){
                cout << i + 1 - 2 << '\n';
                return 0;
            }
            if((-B[ny][nx] - 1) >> s & 1) continue;
            B[ny][nx] -= 1 << s;
            if(s == 0){
                pq1.emplace(A[ny][nx], ny, nx);
            }else{
                pq2.emplace(A[ny][nx], ny, nx);
            }
        }
    }
}
0