結果

問題 No.2731 Two Colors
ユーザー cled0328cled0328
提出日時 2024-04-19 21:56:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,188 ms / 3,000 ms
コード長 2,046 bytes
コンパイル時間 2,617 ms
コンパイル使用メモリ 225,864 KB
実行使用メモリ 96,160 KB
最終ジャッジ日時 2024-10-11 14:59:24
合計ジャッジ時間 18,867 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,184 ms
96,160 KB
testcase_01 AC 1,188 ms
96,032 KB
testcase_02 AC 1,186 ms
96,032 KB
testcase_03 AC 8 ms
5,248 KB
testcase_04 AC 43 ms
6,376 KB
testcase_05 AC 31 ms
5,248 KB
testcase_06 AC 140 ms
11,020 KB
testcase_07 AC 150 ms
12,516 KB
testcase_08 AC 21 ms
5,248 KB
testcase_09 AC 720 ms
36,820 KB
testcase_10 AC 10 ms
5,248 KB
testcase_11 AC 841 ms
38,856 KB
testcase_12 AC 702 ms
36,688 KB
testcase_13 AC 654 ms
31,564 KB
testcase_14 AC 278 ms
18,700 KB
testcase_15 AC 21 ms
5,248 KB
testcase_16 AC 271 ms
16,856 KB
testcase_17 AC 384 ms
21,888 KB
testcase_18 AC 57 ms
6,628 KB
testcase_19 AC 280 ms
17,416 KB
testcase_20 AC 446 ms
27,060 KB
testcase_21 AC 61 ms
7,192 KB
testcase_22 AC 762 ms
38,288 KB
testcase_23 AC 147 ms
11,500 KB
testcase_24 AC 68 ms
7,664 KB
testcase_25 AC 5 ms
5,248 KB
testcase_26 AC 586 ms
31,704 KB
testcase_27 AC 752 ms
38,992 KB
testcase_28 AC 458 ms
25,004 KB
testcase_29 AC 121 ms
10,224 KB
testcase_30 AC 237 ms
17,252 KB
testcase_31 AC 150 ms
11,952 KB
testcase_32 AC 995 ms
43,464 KB
testcase_33 AC 1 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;

int main(){
    int h,w;cin>>h>>w;
    vector<vector<long long>> a(h,vector<long long>(w));
    unordered_map<long long,pair<int,int>> mp;
    for(int i=0;i<h;i++)for(int j=0;j<w;j++){
        cin>>a[i][j];
        mp[a[i][j]]={i,j};
    }
    unordered_set<long long> st0,st1;
    priority_queue<long long,vector<long long>,greater<long long>> pq1,pq0;
    vector<int> dx={1,0,-1,0},dy={0,1,0,-1};
    int idx=1;
    pq1.push(a[0][0]);
    pq0.push(a[h-1][w-1]);
    while(!pq1.empty()||!pq0.empty()){
        if((idx&1)==0){
            idx++;
            while(!pq0.empty()&&st0.count(pq0.top()))pq0.pop();
            if(pq0.empty()){
                continue;
            }
            auto x=pq0.top();pq0.pop();
            st0.insert(x);
            for(int i=0;i<4;i++){
                if(mp[x].first+dx[i]<0||mp[x].first+dx[i]>=h)continue;
                if(mp[x].second+dy[i]<0||mp[x].second+dy[i]>=w)continue;
                if(st0.count(a[mp[x].first+dx[i]][mp[x].second+dy[i]]))continue;
                if(st1.count(a[mp[x].first+dx[i]][mp[x].second+dy[i]])){
                    cout<<idx-3<<"\n";
                    return 0;
                }
                pq0.push(a[mp[x].first+dx[i]][mp[x].second+dy[i]]);
            }
        }else{
            idx++;
            while(!pq1.empty()&&st1.count(pq1.top()))pq1.pop();
            if(pq1.empty()){
                continue;
            }
            auto x=pq1.top();pq1.pop();
            st1.insert(x);
            for(int i=0;i<4;i++){
                if(mp[x].first+dx[i]<0||mp[x].first+dx[i]>=h)continue;
                if(mp[x].second+dy[i]<0||mp[x].second+dy[i]>=w)continue;
                if(st1.count(a[mp[x].first+dx[i]][mp[x].second+dy[i]]))continue;
                if(st0.count(a[mp[x].first+dx[i]][mp[x].second+dy[i]])){
                    cout<<idx-3<<"\n";
                    return 0;
                }
                pq1.push(a[mp[x].first+dx[i]][mp[x].second+dy[i]]);
            }
        }
    }
}
0