結果
問題 | No.3063 幅優先探索 |
ユーザー | leafirby |
提出日時 | 2020-04-01 21:26:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,531 bytes |
コンパイル時間 | 1,697 ms |
コンパイル使用メモリ | 180,364 KB |
実行使用メモリ | 8,448 KB |
最終ジャッジ日時 | 2024-06-27 08:11:21 |
合計ジャッジ時間 | 3,240 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | AC | 79 ms
8,448 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define lli long long int #define uli unsigned long long int #define INF 99999999999 #define rep(i,m,n) for(lli i = m;i < n;i++) #define rrep(i,m,n) for(lli i=m-1;i>=n;i--) #define pb(n) push_back(n) #define UE(N) N.erase(unique(N.begin(),N.end()),N.end()); #define Sort(n) sort(n.begin(), n.end()) #define Rev(n) reverse(n.begin(),n.end()) #define Out(S) cout << S << endl #define NeOut(S) cout << S #define HpOut(S) cout << setprecision(20) << S << endl #define Vecpr(K,L1,L2,N) vector<pair<L1,L2>> K(N) #define Vec(K,L,N,S) vector<L> K(N,S) #define DV(K,L,N,M,R) vector<vector<L>> K(N, vector<L>(M,R)) #define pint pair<int,int> #define Lower(v,X) lower_bound(v.begin(),v.end(),X)-v.begin(); #define mod 1000000007 #define MAX 5100000 #define chmax(a, b) a = (((a)<(b)) ? (b) : (a)) #define chmin(a, b) a = (((a)>(b)) ? (b) : (a)) int dx[4] = {1, 0, -1, 0}; int dy[4] = {0, 1, 0, -1}; int main(){ lli A,B,C,L,R,N,M,K,X=0,Y=0,W,H=INF,sum=0,num=0,flag=0;string S,T,O; cin >> W >> H >> A >> B >> L >> R; DV(P,char,W,H,'.'); rep(i,0,W)rep(j,0,H)cin >> P[i][j]; DV(dist,int,W,H,-1); dist[A-1][B-1]=0; queue<pint> que; que.push(pint(A-1,B-1)); while(!que.empty()){ auto Xq=que.front();que.pop(); rep(i,0,4){ lli nx=Xq.first+dx[i]; lli ny=Xq.second+dy[i]; if(P[nx][ny]=='#'||dist[nx][ny]!=-1)continue; dist[nx][ny]=dist[Xq.first][Xq.second]+1; que.push(pint(nx,ny)); } } Out(dist[L-1][R-1]); }