結果

問題 No.2731 Two Colors
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-04-25 15:53:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 255 ms / 3,000 ms
コード長 2,751 bytes
コンパイル時間 3,114 ms
コンパイル使用メモリ 215,104 KB
実行使用メモリ 11,408 KB
最終ジャッジ日時 2024-11-08 03:01:40
合計ジャッジ時間 8,523 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 246 ms
11,136 KB
testcase_01 AC 249 ms
11,136 KB
testcase_02 AC 255 ms
11,136 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 12 ms
5,248 KB
testcase_05 AC 9 ms
5,248 KB
testcase_06 AC 27 ms
5,248 KB
testcase_07 AC 29 ms
5,280 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 101 ms
9,592 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 116 ms
11,408 KB
testcase_12 AC 99 ms
9,452 KB
testcase_13 AC 98 ms
9,140 KB
testcase_14 AC 47 ms
6,116 KB
testcase_15 AC 7 ms
5,248 KB
testcase_16 AC 47 ms
6,080 KB
testcase_17 AC 65 ms
7,144 KB
testcase_18 AC 14 ms
5,248 KB
testcase_19 AC 49 ms
6,260 KB
testcase_20 AC 64 ms
7,488 KB
testcase_21 AC 13 ms
5,248 KB
testcase_22 AC 110 ms
10,152 KB
testcase_23 AC 29 ms
5,248 KB
testcase_24 AC 16 ms
5,248 KB
testcase_25 AC 3 ms
5,248 KB
testcase_26 AC 85 ms
8,576 KB
testcase_27 AC 106 ms
10,360 KB
testcase_28 AC 74 ms
8,196 KB
testcase_29 AC 25 ms
5,248 KB
testcase_30 AC 41 ms
6,284 KB
testcase_31 AC 29 ms
5,280 KB
testcase_32 AC 137 ms
11,380 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>

using namespace std;
using ll = long long;

template<typename T> using pq = priority_queue<T, vector<T>, greater<T>>;

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

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

    int H, W, ans=0, x, y, cnt=0, a, xx, yy;
    cin >> H >> W;
    vector used(H, vector<int>(W, -1));
    pq<tuple<int, int, int>> que0, que1;
    vector A(H, vector<int>(W));
    for (int i=0; i<H; i++){
        for (int j=0; j<W; j++) cin >> A[i][j];
    }
    used[0][0] = 1;
    used[H-1][W-1] = 0;

    auto check=[&](int i, int j)->bool{
        return 0 <= i & i < H & 0 <= j & j < W;
    };

    for (int i=0; i<4; i++){
        x = dx[i];
        y = dy[i];
        if (check(x, y)){
            que1.push({A[x][y], x, y});
        }
    }
    for (int i=0; i<4; i++){
        x = dx[i]+H-1;
        y = dy[i]+W-1;
        if (check(x, y)){
            que0.push({A[x][y], x, y});
        }
    }

    while(1){
        cnt++;
        cnt %= 2;
        if (cnt == 1){
            while(!que1.empty()){
                tie(a, x, y) = que1.top();
                que1.pop();
                if (used[x][y] == -1){
                    used[x][y] = 1;
                    ans++;
                    for (int j=0; j<4; j++){
                        xx = x+dx[j];
                        yy = y+dy[j];
                        if (check(xx, yy)){
                            if (used[xx][yy] == 0){
                                cout << ans << endl;
                                return 0;
                            }
                            else if (used[xx][yy] == -1){
                                que1.push({A[xx][yy], xx, yy});
                            }
                        }
                    }
                    break;
                }
            }
        }
        else{
            while(!que0.empty()){
                tie(a, x, y) = que0.top();
                que0.pop();
                if (used[x][y] == -1){
                    used[x][y] = 0;
                    ans++;
                    for (int j=0; j<4; j++){
                        xx = x+dx[j];
                        yy = y+dy[j];
                        if (check(xx, yy)){
                            if (used[xx][yy] == 1){
                                cout << ans << endl;
                                return 0;
                            }
                            else if (used[xx][yy] == -1){
                                que0.push({A[xx][yy], xx, yy});
                            }
                        }
                    }
                    break;
                }
            }
        }
    }

    cout << ans << endl;

    return 0;
}
0