結果

問題 No.323 yuki国
ユーザー beetbeet
提出日時 2018-11-14 11:52:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 197 ms / 5,000 ms
コード長 1,137 bytes
コンパイル時間 2,628 ms
コンパイル使用メモリ 211,216 KB
実行使用メモリ 13,564 KB
最終ジャッジ日時 2024-06-06 19:53:34
合計ジャッジ時間 6,389 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
13,336 KB
testcase_01 AC 5 ms
13,184 KB
testcase_02 AC 5 ms
13,176 KB
testcase_03 AC 10 ms
13,184 KB
testcase_04 AC 6 ms
13,260 KB
testcase_05 AC 7 ms
13,172 KB
testcase_06 AC 5 ms
13,184 KB
testcase_07 AC 6 ms
13,312 KB
testcase_08 AC 122 ms
13,440 KB
testcase_09 AC 130 ms
13,292 KB
testcase_10 AC 6 ms
13,312 KB
testcase_11 AC 6 ms
13,440 KB
testcase_12 AC 5 ms
13,312 KB
testcase_13 AC 120 ms
13,564 KB
testcase_14 AC 121 ms
13,312 KB
testcase_15 AC 36 ms
13,428 KB
testcase_16 AC 117 ms
13,360 KB
testcase_17 AC 151 ms
13,536 KB
testcase_18 AC 55 ms
13,324 KB
testcase_19 AC 89 ms
13,428 KB
testcase_20 AC 190 ms
13,532 KB
testcase_21 AC 197 ms
13,356 KB
testcase_22 AC 191 ms
13,440 KB
testcase_23 AC 184 ms
13,440 KB
testcase_24 AC 44 ms
13,440 KB
testcase_25 AC 44 ms
13,416 KB
testcase_26 AC 158 ms
13,300 KB
testcase_27 AC 155 ms
13,440 KB
testcase_28 AC 151 ms
13,376 KB
testcase_29 AC 166 ms
13,360 KB
testcase_30 AC 5 ms
13,312 KB
testcase_31 AC 6 ms
13,312 KB
testcase_32 AC 7 ms
13,312 KB
testcase_33 AC 7 ms
13,220 KB
testcase_34 AC 6 ms
13,316 KB
testcase_35 AC 6 ms
13,236 KB
testcase_36 AC 6 ms
13,312 KB
testcase_37 AC 5 ms
13,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
const Int MAX = 4050;
bool dp[MAX][50][50];
signed main(){
  Int h,w;
  cin>>h>>w;
  
  Int a,sy,sx;
  cin>>a>>sy>>sx;

  Int b,gy,gx;
  cin>>b>>gy>>gx;

  vector<string> st(h);
  for(Int i=0;i<h;i++) cin>>st[i];

  using T = tuple<Int, Int, Int>;
  queue<T> q;  
  memset(dp,0,sizeof(dp));
  
  dp[a][sy][sx]=1; 
  q.emplace(a,sy,sx);

  auto in=[&](Int y,Int x){return 0<=y&&y<h&&0<=x&&x<w;};
  auto check=[&](Int s){return 0<s&&s<MAX;}; 

  Int dy[]={0,0,1,-1};  
  Int dx[]={1,-1,0,0};
  
  while(!q.empty()){
    Int s,y,x;
    tie(s,y,x)=q.front();q.pop();
    for(Int k=0;k<4;k++){
      Int ny=y+dy[k],nx=x+dx[k];
      if(!in(ny,nx)) continue;

      Int ns=s+(st[ny][nx]=='.'?-1:1);
      if(!check(ns)) continue;

      if(dp[ns][ny][nx]) continue;      
      dp[ns][ny][nx]=1;
      q.emplace(ns,ny,nx);      
    }
  }
  
  cout<<(dp[b][gy][gx]?"Yes":"No")<<endl;
  return 0;
}
0