結果
| 問題 |
No.424 立体迷路
|
| コンテスト | |
| ユーザー |
dnish
|
| 提出日時 | 2018-06-04 19:17:46 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 1,750 bytes |
| コンパイル時間 | 805 ms |
| コンパイル使用メモリ | 89,328 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-05 07:16:08 |
| 合計ジャッジ時間 | 1,595 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 21 |
ソースコード
#include <algorithm>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <deque>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <utility>
#include <vector>
#define p(s) cout<<(s)<<endl
#define REP(i,n,N) for(int i=n;i<N;i++)
#define RREP(i,n,N) for(int i=N-1;i>=n;i--)
#define CK(n,a,b) ((a)<=(n)&&(n)<(b))
#define F first
#define S second
typedef long long ll;
using namespace std;
const ll mod = 1e9+7;
int H, W;
int sx, sy, gx, gy;
string field[55];
bool used[55][55];
int dx[4] = {1,0,-1,0};
int dy[4] = {0,1,0,-1};
int main() {
cin>>H>>W;
cin>>sy>>sx>>gy>>gx;
sx--;sy--;gx--;gy--;
REP(i,0,H){
cin>>field[i];
}
queue<pair<int, int>> q; //y, x
q.push({sy, sx});
while(!q.empty()){
auto now=q.front();
//cout<<now.F<<" "<<now.S<<endl;
if(now.F==gy&&now.S==gx){
p("YES");
return 0;
}
q.pop();
REP(k,0,4){
int nexty = now.F + dy[k];
int nextx = now.S + dx[k];
if(!CK(nexty,0,H)||!CK(nextx,0,W)) continue;
if(used[nexty][nextx]||abs(field[nexty][nextx]-field[now.F][now.S])>1) continue;
used[nexty][nextx] = true;
q.push({nexty, nextx});
}
REP(k,0,4){
int nexty = now.F + dy[k]*2;
int nextx = now.S + dx[k]*2;
if(!CK(nexty,0,H)||!CK(nextx,0,W)) continue;
if(used[nexty][nextx]||field[nexty][nextx]!=field[now.F][now.S]) continue;
if(field[nexty-dy[k]][nextx-dx[k]]>field[now.F][now.S]) continue;
used[nexty][nextx] = true;
q.push({nexty, nextx});
}
}
p("NO");
return 0;
}
dnish