結果

問題 No.2731 Two Colors
ユーザー GOTKAKOGOTKAKO
提出日時 2024-04-19 21:39:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 269 ms / 3,000 ms
コード長 1,563 bytes
コンパイル時間 2,518 ms
コンパイル使用メモリ 223,592 KB
実行使用メモリ 10,552 KB
最終ジャッジ日時 2024-10-11 14:24:58
合計ジャッジ時間 6,807 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
7,680 KB
testcase_01 AC 267 ms
7,680 KB
testcase_02 AC 269 ms
7,680 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 10 ms
6,820 KB
testcase_05 AC 8 ms
6,816 KB
testcase_06 AC 27 ms
6,816 KB
testcase_07 AC 28 ms
6,820 KB
testcase_08 AC 6 ms
6,820 KB
testcase_09 AC 98 ms
7,412 KB
testcase_10 AC 4 ms
6,816 KB
testcase_11 AC 112 ms
10,552 KB
testcase_12 AC 96 ms
7,148 KB
testcase_13 AC 94 ms
7,796 KB
testcase_14 AC 45 ms
6,816 KB
testcase_15 AC 6 ms
6,820 KB
testcase_16 AC 45 ms
6,816 KB
testcase_17 AC 62 ms
6,820 KB
testcase_18 AC 13 ms
6,816 KB
testcase_19 AC 48 ms
6,820 KB
testcase_20 AC 63 ms
6,816 KB
testcase_21 AC 14 ms
6,816 KB
testcase_22 AC 108 ms
8,104 KB
testcase_23 AC 28 ms
6,816 KB
testcase_24 AC 15 ms
6,816 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 83 ms
6,832 KB
testcase_27 AC 104 ms
8,232 KB
testcase_28 AC 73 ms
7,032 KB
testcase_29 AC 23 ms
6,816 KB
testcase_30 AC 40 ms
6,816 KB
testcase_31 AC 29 ms
6,820 KB
testcase_32 AC 133 ms
9,128 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 <bits/stdc++.h>
using namespace std;

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

    int H,W; cin >> H >> W;
    vector<vector<int>> A(H,vector<int>(W));
    for(int i=0; i<H; i++) for(int k=0; k<W; k++) cin >> A.at(i).at(k);
    
    vector<vector<bool>> alr(H,vector<bool>(W)),alb = alr;
    priority_queue<tuple<int,int,int>,vector<tuple<int,int,int>>,greater<>> qr,qb;
    
    bool end = false;
    int answer = -2;
    qr.push({0,0,0}),qb.push({0,H-1,W-1});
    vector<pair<int,int>> dxy = {{-1,0},{0,1},{1,0},{0,-1}};
    while(true){
        auto[a,x,y] = qr.top(); qr.pop();
        while(alr.at(x).at(y)){tie(a,x,y) = qr.top(); qr.pop();}
        alr.at(x).at(y) = true;
        answer++;
        for(auto &[dx,dy] : dxy){
            int nx = x+dx,ny = y+dy;
            if(nx < 0 || nx >= H || ny < 0 || ny >= W) continue;
            if(alr.at(nx).at(ny)) continue;
            if(alb.at(nx).at(ny)){end = true; break;}
            qr.push({A.at(nx).at(ny),nx,ny});
        }
        if(end) break;
    
        tie(a,x,y) = qb.top(); qb.pop();
        while(alb.at(x).at(y)){tie(a,x,y) = qb.top(); qb.pop();}
        alb.at(x).at(y) = true;
        answer++;
        for(auto &[dx,dy] : dxy){
            int nx = x+dx,ny = y+dy;
            if(nx < 0 || nx >= H || ny < 0 || ny >= W) continue;
            if(alb.at(nx).at(ny)) continue;
            if(alr.at(nx).at(ny)){end = true; break;}
            qb.push({A.at(nx).at(ny),nx,ny});  
        }
        if(end) break;
    }
    cout << answer << endl;
}
0