結果
問題 | No.2096 Rage With Our Friends |
ユーザー | kmjp |
提出日時 | 2022-10-09 00:44:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 222 ms / 5,000 ms |
コード長 | 1,840 bytes |
コンパイル時間 | 2,013 ms |
コンパイル使用メモリ | 207,724 KB |
実行使用メモリ | 39,168 KB |
最終ジャッジ日時 | 2024-06-23 02:08:42 |
合計ジャッジ時間 | 5,084 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,948 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 117 ms
38,996 KB |
testcase_12 | AC | 133 ms
39,040 KB |
testcase_13 | AC | 164 ms
39,168 KB |
testcase_14 | AC | 211 ms
38,912 KB |
testcase_15 | AC | 146 ms
38,912 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 165 ms
39,040 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 219 ms
39,040 KB |
testcase_22 | AC | 222 ms
39,040 KB |
testcase_23 | AC | 17 ms
16,128 KB |
testcase_24 | AC | 138 ms
27,136 KB |
testcase_25 | AC | 80 ms
29,952 KB |
testcase_26 | AC | 49 ms
25,472 KB |
testcase_27 | AC | 26 ms
13,824 KB |
testcase_28 | AC | 3 ms
5,760 KB |
testcase_29 | AC | 14 ms
10,752 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- int H,W,SX,GX,SY,GY; string S[2010]; int U[2010][2010]; int D[2010][2010]; void solve() { int i,j,k,l,r,x,y; string s; cin>>H>>W>>SY>>SX>>GY>>GX; SY--,GY--; SX--,GX--; FOR(y,H) cin>>S[y]; S[H]=string(W,'#'); H++; FOR(x,W) { FOR(y,H) { D[y][x]=1<<30; if(y) U[y][x]=U[y-1][x]; else U[y][x]=-1; if(S[y][x]=='.') U[y][x]=y; } } deque<int> Q; D[SY][SX]=0; Q.push_back(SY*2000+SX); while(Q.size()) { int cy=Q.front()/2000; int cx=Q.front()%2000; Q.pop_front(); int co=D[cy][cx]; if(cy==GY&&cx==GX) { cout<<co<<endl; return; } for(int tx=cx-1;tx<=cx+1;tx+=2) if(tx>=0&&tx<W) { y=U[cy+1][tx]; if(y<0) continue; if(chmin(D[y][tx],co)) Q.push_front(y*2000+tx); if(y<cy) { int hy=cy+1; int sy=y+(cy-y)/2+1; for(int tx2=tx-1;tx2<=tx+1;tx2+=2) if(tx2>=0&&tx2<W) { int ny=U[hy][tx2]; if(ny>=0&&chmin(D[ny][tx2],co+1)) Q.push_back(ny*2000+tx2); ny=U[sy][tx2]; if(ny>=0&&chmin(D[ny][tx2],co)) Q.push_front(ny*2000+tx2); } } } } cout<<-1<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }