結果
問題 | No.323 yuki国 |
ユーザー | ciel |
提出日時 | 2015-12-18 04:10:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2,853 ms / 5,000 ms |
コード長 | 935 bytes |
コンパイル時間 | 944 ms |
コンパイル使用メモリ | 83,344 KB |
実行使用メモリ | 89,344 KB |
最終ジャッジ日時 | 2024-06-28 12:27:20 |
合計ジャッジ時間 | 34,639 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2,163 ms
85,632 KB |
testcase_09 | AC | 2,250 ms
85,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2,116 ms
85,248 KB |
testcase_14 | AC | 2,238 ms
89,344 KB |
testcase_15 | AC | 2,313 ms
72,192 KB |
testcase_16 | AC | 2,386 ms
85,760 KB |
testcase_17 | AC | 2,704 ms
81,408 KB |
testcase_18 | AC | 13 ms
5,376 KB |
testcase_19 | AC | 1,722 ms
54,400 KB |
testcase_20 | AC | 34 ms
5,504 KB |
testcase_21 | AC | 2,853 ms
82,432 KB |
testcase_22 | AC | 614 ms
25,216 KB |
testcase_23 | AC | 2,651 ms
78,464 KB |
testcase_24 | AC | 141 ms
10,240 KB |
testcase_25 | AC | 2,626 ms
80,640 KB |
testcase_26 | AC | 137 ms
10,112 KB |
testcase_27 | AC | 183 ms
11,776 KB |
testcase_28 | AC | 2,638 ms
85,888 KB |
testcase_29 | AC | 2,572 ms
86,144 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | AC | 1 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 1 ms
5,376 KB |
testcase_35 | AC | 1 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <string> #include <queue> #include <map> using namespace std; typedef struct{ int x; int y; }dir; const dir D[]={ {0,-1},{0,1},{-1,0},{1,0} }; int main(){ int H,W,A,Sx,Sy,B,Gx,Gy; cin>>H>>W>>A>>Sy>>Sx>>B>>Gy>>Gx; vector<string>v(H); for(int i=0;i<H;i++)cin>>v[i]; queue<tuple<int,int,int>>q; q.emplace(Sx,Sy,A); map<tuple<int,int,int>,int>depth={ {make_tuple(Sx,Sy,A),0} }; for(;!q.empty();){ auto cur=q.front();q.pop(); int cx=get<0>(cur),cy=get<1>(cur),cw=get<2>(cur); for(auto &d:D){ if(0<=cx+d.x&&cx+d.x<W && 0<=cy+d.y&&cy+d.y<H){ int w=cw+(v[cy+d.y][cx+d.x]=='*' ? 1 : -1); if(1<=w && w<=max(A,B)+H+W){ if(cx+d.x==Gx && cy+d.y==Gy && w==B){ cout<<"Yes"<<endl; return 0; } auto nxt=make_tuple(cx+d.x,cy+d.y,w); if(depth.find(nxt)==depth.end()){ q.push(nxt); depth[nxt]=depth[cur]+1; } } } } } cout<<"No"<<endl; }