結果

問題 No.1323 うしらずSwap
ユーザー kzyKTkzyKT
提出日時 2020-12-20 00:19:33
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,747 bytes
コンパイル時間 3,269 ms
コンパイル使用メモリ 173,116 KB
実行使用メモリ 33,024 KB
最終ジャッジ日時 2024-09-21 10:52:47
合計ジャッジ時間 24,973 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 1 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 231 ms
32,768 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 224 ms
32,768 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 231 ms
33,024 KB
testcase_27 AC 228 ms
33,024 KB
testcase_28 WA -
testcase_29 AC 237 ms
32,896 KB
testcase_30 AC 290 ms
33,024 KB
testcase_31 AC 236 ms
32,768 KB
testcase_32 WA -
testcase_33 AC 885 ms
32,768 KB
testcase_34 AC 1,077 ms
32,896 KB
testcase_35 AC 1,217 ms
32,768 KB
testcase_36 AC 1,312 ms
32,896 KB
testcase_37 AC 1,357 ms
32,768 KB
testcase_38 AC 1,643 ms
32,640 KB
testcase_39 AC 1,673 ms
32,768 KB
testcase_40 AC 1,682 ms
32,768 KB
testcase_41 AC 1,693 ms
32,896 KB
testcase_42 AC 1,691 ms
32,768 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 166 ms
32,896 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 114 ms
33,024 KB
testcase_49 AC 162 ms
32,896 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 66 ms
32,896 KB
testcase_53 AC 159 ms
32,768 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 51 ms
33,024 KB
testcase_57 AC 188 ms
32,896 KB
testcase_58 AC 3 ms
5,376 KB
testcase_59 AC 3 ms
5,376 KB
testcase_60 AC 3 ms
5,376 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define F first
#define S second
#define R cin>>
#define ll long long
#define ln cout<<'\n'
#define in(a) insert(a)
#define pb(a) push_back(a)
#define pd(a) printf("%.10f\n",a)
#define mem(a) memset(a,0,sizeof(a))
#define all(c) (c).begin(),(c).end()
#define iter(c) __typeof((c).begin())
#define rrep(i,n) for(ll i=(ll)(n)-1;i>=0;i--)
#define REP(i,m,n) for(ll i=(ll)(m);i<(ll)(n);i++)
#define rep(i,n) REP(i,0,n)
#define tr(it,c) for(iter(c) it=(c).begin();it!=(c).end();it++)
ll check(ll n,ll m,ll x,ll y){return x>=0&&x<n&&y>=0&&y<m;}void pr(){ln;}
template<class A,class...B>void pr(const A &a,const B&...b){cout<<a<<(sizeof...(b)?" ":"");pr(b...);}
template<class A>void PR(A a,ll n){rep(i,n)cout<<(i?" ":"")<<a[i];ln;}
const ll MAX=1e9+7,MAXL=1LL<<61,dx[8]={-1,0,1,0,-1,-1,1,1},dy[8]={0,1,0,-1,-1,1,1,-1};
typedef pair<ll,ll> P;

ll n,m;
string s[2222];
vector<vector<ll> > bfs(int sx,int sy) {
  vector<vector<ll> > d(n,vector<ll>(m,MAX));
  d[sx][sy]=0;
  queue<P> que;
  que.push(P(sx,sy));
  while(!que.empty()) {
    P p=que.front();que.pop();
    ll x=p.F,y=p.S;
    rep(i,4) {
      ll xx=x+dx[i],yy=y+dy[i];
      if(check(n,m,xx,yy)&&s[xx][yy]=='.'&&d[xx][yy]==MAX) {
        d[xx][yy]=d[x][y]+1;
        que.push(P(xx,yy));
      }
    }
  }
  return d;
}

void Main() {
  ll sx,sy,tx,ty;
  cin >> n >> m >> sx >> sy >> tx >> ty;
  rep(i,n) cin >> s[i];
  sx--,sy--,tx--,ty--;
  vector<vector<ll> > c=bfs(sx,sy);
  vector<vector<ll> > d=bfs(tx,ty);
  ll ans=MAX;
  rep(i,n) {
    rep(j,m) {
      if(s[i][j]=='.') {
        rep(l,4) {
          vector<P> v;
          rep(k,3) {
            int x=i+dx[(k+l)%4],y=j+dy[(k+l)%4];
            if(check(n,m,x,y)&&s[x][y]=='.') v.pb(P(x,y));
          }
          if(v.size()!=3) continue;
          ll M=MAX;
          vector<P> k1,k2;
          rep(k,3) {
            ll dd=c[v[k].F][v[k].S];
            if(dd<M) {
              M=dd;
              k1.clear();
              k1.pb(P(v[k]));
            } else if(dd==M) k1.pb(v[k]);
          }
          M=MAX;
          rep(k,3) {
            ll dd=d[v[k].F][v[k].S];
            if(dd<M) {
              M=dd;
              k2.clear();
              k2.pb(P(v[k]));
            } else if(dd==M) k2.pb(v[k]);
          }
          if(k1.size()>=2) k1.clear();
          if(k2.size()>=2) k2.clear();
          do {
            if(k1.size()&&v[0]==k1[0]) continue;
            if(k2.size()&&v[1]==k2[0]) continue;
            ans=min(ans,c[v[0].F][v[0].S]+d[v[0].F][v[0].S]+c[v[1].F][v[1].S]+d[v[1].F][v[1].S]);
          } while(next_permutation(all(v)));
        }
      }
    }
  }
  if(ans==MAX) ans=-1;
  pr(ans);
}

int main(){ios::sync_with_stdio(0);cin.tie(0);Main();return 0;}
0