結果

問題 No.1323 うしらずSwap
ユーザー chocoruskchocorusk
提出日時 2020-12-20 02:22:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 5,004 bytes
コンパイル時間 1,980 ms
コンパイル使用メモリ 149,076 KB
実行使用メモリ 128,876 KB
最終ジャッジ日時 2024-09-21 11:22:39
合計ジャッジ時間 17,568 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,732 KB
testcase_01 AC 5 ms
14,624 KB
testcase_02 AC 4 ms
13,920 KB
testcase_03 AC 5 ms
14,056 KB
testcase_04 WA -
testcase_05 AC 6 ms
14,464 KB
testcase_06 AC 6 ms
13,844 KB
testcase_07 AC 6 ms
15,444 KB
testcase_08 AC 4 ms
14,364 KB
testcase_09 AC 5 ms
14,752 KB
testcase_10 AC 4 ms
9,724 KB
testcase_11 AC 5 ms
14,116 KB
testcase_12 AC 4 ms
13,832 KB
testcase_13 AC 4 ms
14,216 KB
testcase_14 AC 4 ms
14,208 KB
testcase_15 AC 6 ms
14,856 KB
testcase_16 AC 550 ms
128,320 KB
testcase_17 AC 1,025 ms
128,456 KB
testcase_18 AC 558 ms
128,516 KB
testcase_19 AC 994 ms
128,068 KB
testcase_20 AC 556 ms
128,476 KB
testcase_21 AC 564 ms
128,876 KB
testcase_22 AC 1,005 ms
128,664 KB
testcase_23 AC 593 ms
128,704 KB
testcase_24 AC 981 ms
128,800 KB
testcase_25 AC 576 ms
128,788 KB
testcase_26 AC 292 ms
77,476 KB
testcase_27 AC 230 ms
67,728 KB
testcase_28 AC 129 ms
46,236 KB
testcase_29 AC 336 ms
87,396 KB
testcase_30 AC 543 ms
87,296 KB
testcase_31 AC 313 ms
87,276 KB
testcase_32 AC 549 ms
87,400 KB
testcase_33 AC 188 ms
24,664 KB
testcase_34 AC 169 ms
24,660 KB
testcase_35 AC 161 ms
26,592 KB
testcase_36 AC 155 ms
24,676 KB
testcase_37 AC 146 ms
24,668 KB
testcase_38 AC 131 ms
24,412 KB
testcase_39 AC 140 ms
26,460 KB
testcase_40 AC 136 ms
24,544 KB
testcase_41 AC 140 ms
24,672 KB
testcase_42 AC 127 ms
24,928 KB
testcase_43 AC 105 ms
46,032 KB
testcase_44 AC 112 ms
45,856 KB
testcase_45 AC 100 ms
45,928 KB
testcase_46 AC 121 ms
45,912 KB
testcase_47 AC 123 ms
45,904 KB
testcase_48 AC 153 ms
46,148 KB
testcase_49 AC 201 ms
46,092 KB
testcase_50 AC 126 ms
45,988 KB
testcase_51 AC 110 ms
45,984 KB
testcase_52 AC 128 ms
45,988 KB
testcase_53 AC 190 ms
46,156 KB
testcase_54 AC 105 ms
46,000 KB
testcase_55 AC 209 ms
46,024 KB
testcase_56 AC 134 ms
46,048 KB
testcase_57 AC 200 ms
46,120 KB
testcase_58 AC 6 ms
14,536 KB
testcase_59 AC 12 ms
43,408 KB
testcase_60 AC 6 ms
15,136 KB
testcase_61 AC 5 ms
15,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#define popcount __builtin_popcount
using namespace std;
typedef long long ll;
typedef pair<int, int> P;

int main()
{
    int h, w;
    int ra, ca, rb, cb;
    cin>>h>>w>>ra>>ca>>rb>>cb;
    ra--;ca--;rb--;cb--;
    string s[1400];
    for(int i=0; i<h; i++){
        cin>>s[i];
    }
    queue<P> que;
    que.push({ra, ca});
    int d[1400][1400];
    const int INF=1e8;
    for(int i=0; i<h; i++){
        for(int j=0; j<w; j++){
            d[i][j]=INF;
        }
    }
    d[ra][ca]=0;
    int dx[4]={1, -1, 0, 0}, dy[4]={0, 0, 1, -1};
    while(!que.empty()){
        P p=que.front(); que.pop();
        int x=p.first, y=p.second;
        for(int k=0; k<4; k++){
            int x1=x+dx[k], y1=y+dy[k];
            if(s[x1][y1]!='#' && d[x1][y1]>d[x][y]+1){
                que.push({x1, y1});
                d[x1][y1]=d[x][y]+1;
            }
        }
    }
    int dr[1400][1400];
    for(int i=0; i<h; i++){
        for(int j=0; j<w; j++){
            dr[i][j]=INF;
        }
    }
    dr[rb][cb]=0;
    que.push({rb, cb});
    while(!que.empty()){
        P p=que.front(); que.pop();
        int x=p.first, y=p.second;
        for(int k=0; k<4; k++){
            int x1=x+dx[k], y1=y+dy[k];
            if(s[x1][y1]!='#' && dr[x1][y1]>dr[x][y]+1){
                que.push({x1, y1});
                dr[x1][y1]=dr[x][y]+1;
            }
        }
    }
    vector<P> v;
    for(int i=0; i<h; i++){
        for(int j=0; j<w; j++){
            if(s[i][j]!='#' && d[i][j]+dr[i][j]==d[rb][cb]){
                v.push_back({i, j});
            }
        }
    }
    if(v.size()>d[rb][cb]+1){
        cout<<2*d[rb][cb]<<endl;
        return 0;
    }
    int ans=INF;
    for(auto p:v){
        int x=p.first, y=p.second;
        for(int k=0; k<4; k++){
            int x1=x+dx[k], y1=y+dy[k];
            if(s[x][y]!='#' && s[x1][y1]!='#' && dr[x1][y1]==d[rb][cb]-d[x][y]){
                cout<<2*d[rb][cb]+1<<endl;
                return 0;
            }
        }
    }
    bool dame[1400][1400]={};
    for(auto p:v){
        int x=p.first, y=p.second;
        dame[x][y]=1;
        int cnt=0;
        for(int k=0; k<4; k++){
            int x1=x+dx[k], y1=y+dy[k];
            if(s[x1][y1]!='#'){
                cnt++;
            }
        }
        if(!(x==ra && y==ca) && !(x==rb && y==cb) && cnt>2){
            ans=min(ans, 2*d[rb][cb]+2);
        }
    }
    int e[1400][1400];
    for(int i=0; i<h; i++){
        for(int j=0; j<w; j++){
            e[i][j]=INF;
        }
    }
    e[ra][ca]=0;
    que.push({ra, ca});
    while(!que.empty()){
        P p=que.front(); que.pop();
        int x=p.first, y=p.second;
        for(int k=0; k<4; k++){
            int x1=x+dx[k], y1=y+dy[k];
            if(s[x1][y1]!='#' && (!dame[x1][y1] || !dame[x][y]) && e[x1][y1]>e[x][y]+1){
                que.push({x1, y1});
                e[x1][y1]=e[x][y]+1;
            }
        }
    }
    int e1[1400][1400];
    for(int i=0; i<h; i++){
        for(int j=0; j<w; j++){
            e1[i][j]=INF;
        }
    }
    e1[ra][ca]=0;
    que.push({ra, ca});
    while(!que.empty()){
        P p=que.front(); que.pop();
        int x=p.first, y=p.second;
        for(int k=0; k<4; k++){
            int x1=x+dx[k], y1=y+dy[k];
            if(s[x1][y1]!='#' && !dame[x1][y1] && e1[x1][y1]>e1[x][y]+1){
                que.push({x1, y1});
                e1[x1][y1]=e1[x][y]+1;
            }
        }
    }
    map<int, int> mp;
    for(int i=0; i<h; i++){
        for(int j=0; j<w; j++){
            mp[e1[i][j]]++;
        }
    }
    int mn=INF;
    for(auto p:mp){
        if(p.second>1){
            mn=min(mn, p.first);
            break;
        }
    }
    int er[1400][1400];
    for(int i=0; i<h; i++){
        for(int j=0; j<w; j++){
            er[i][j]=INF;
        }
    }
    er[rb][cb]=0;
    que.push({rb, cb});
    while(!que.empty()){
        P p=que.front(); que.pop();
        int x=p.first, y=p.second;
        for(int k=0; k<4; k++){
            int x1=x+dx[k], y1=y+dy[k];
            if(s[x1][y1]!='#' && !dame[x1][y1] && er[x1][y1]>er[x][y]+1){
                que.push({x1, y1});
                er[x1][y1]=er[x][y]+1;
            }
        }
    }
    map<int, int> mp2;
    for(int i=0; i<h; i++){
        for(int j=0; j<w; j++){
            mp2[er[i][j]]++;
        }
    }
    for(auto p:mp2){
        if(p.second>1){
            mn=min(mn, p.first);
            break;
        }
    }
    ans=min({ans, 2*d[rb][cb]+4*mn, d[rb][cb]+e[rb][cb]});
    if(ans<INF) cout<<ans<<endl;
    else cout<<-1<<endl;
    return 0;
}
0