結果
問題 | No.424 立体迷路 |
ユーザー |
![]() |
提出日時 | 2017-08-04 14:03:57 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,986 bytes |
コンパイル時間 | 988 ms |
コンパイル使用メモリ | 94,784 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 07:14:45 |
合計ジャッジ時間 | 1,395 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 21 |
ソースコード
#include <algorithm>#include <cstdio>#include <iostream>#include <map>#include <cmath>#include <queue>#include <set>#include <sstream>#include <stack>#include <string>#include <vector>#include <stdlib.h>#include <stdio.h>#include <bitset>using namespace std;#define FOR(I,A,B) for(int I = (A); I < (B); ++I)typedef long long ll;// タグにunion-findとあったのでunion-findでやってみる// (y,x)について2個以内のブロックに行けたら同じグループ// スタートとゴールが同じグループならいける// union - find tree !!!!!!!!!!!!!!!!!!!!!!!!!vector<int> par; //oyavector<int> rnk; //ki no hu ka sa// n要素で初期化void init(int n){par.resize(n);rnk.resize(n);FOR(i, 0, n){par[i] = i;rnk[i] = 0;}}//木の根を求めるint find(int x){if(par[x] == x) return x;else return par[x] = find(par[x]);}//xとyの属する集合を併合void unite(int x, int y){x = find(x);y = find(y);if(x == y) return;if(rnk[x] < rnk[y]) par[x] = y;else{par[y] = x;if(rnk[x] == rnk[y]) rnk[x]++;}return;}bool isSame(int x, int y){return find(x) == find(y);}int Z(int y, int x) {return 100 * y + x;}int main(){int h, w;cin >> h >> w;init(10000);int sx, sy, gx, gy;cin >> sy >> sx >> gy >> gx;sx--;sy--;gx--;gy--;vector<string> vs(h);FOR(i,0,h) cin >> vs[i];int vy[8] = {-1, 0, 1, 0, -2, 0, 2, 0};int vx[8] = {0, 1, 0, -1, 0, 2, 0, -2};FOR(y,0,h) {FOR(x,0,w) {FOR(i,0,8) {int nx = x + vx[i];int ny = y + vy[i];if(nx<0||nx>=w||ny<0||ny>=h) continue;// 一個横if(i<4) {if(abs((vs[y][x]-'0')-(vs[ny][nx]-'0')) <= 1) unite(Z(y,x),Z(ny,nx));} else {if((vs[y][x] == vs[ny][nx]) && ((vs[y][x]-'0') > (vs[y+vy[i-4]][x+vx[i-4]]-'0'))) unite(Z(y,x),Z(ny,nx));}}}}cout << (isSame(Z(gy,gx),Z(sy,sx)) ? "YES" : "NO") << endl;return 0;}