結果
問題 | No.323 yuki国 |
ユーザー | piyoko_212 |
提出日時 | 2015-12-20 23:58:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 867 bytes |
コンパイル時間 | 638 ms |
コンパイル使用メモリ | 48,332 KB |
実行使用メモリ | 38,604 KB |
最終ジャッジ日時 | 2024-09-17 21:08:07 |
合計ジャッジ時間 | 5,805 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 6 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 232 ms
38,476 KB |
testcase_09 | AC | 217 ms
38,144 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 221 ms
38,016 KB |
testcase_14 | AC | 256 ms
38,216 KB |
testcase_15 | AC | 80 ms
22,400 KB |
testcase_16 | AC | 261 ms
38,144 KB |
testcase_17 | AC | 259 ms
38,220 KB |
testcase_18 | AC | 79 ms
14,664 KB |
testcase_19 | AC | 177 ms
24,448 KB |
testcase_20 | AC | 298 ms
38,348 KB |
testcase_21 | AC | 302 ms
38,476 KB |
testcase_22 | AC | 292 ms
38,348 KB |
testcase_23 | AC | 278 ms
38,604 KB |
testcase_24 | AC | 82 ms
22,528 KB |
testcase_25 | AC | 78 ms
23,500 KB |
testcase_26 | AC | 248 ms
38,272 KB |
testcase_27 | AC | 271 ms
38,144 KB |
testcase_28 | AC | 265 ms
38,144 KB |
testcase_29 | AC | 249 ms
38,144 KB |
testcase_30 | AC | 1 ms
6,944 KB |
testcase_31 | AC | 1 ms
6,940 KB |
testcase_32 | AC | 2 ms
6,944 KB |
testcase_33 | AC | 1 ms
6,940 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 2 ms
6,940 KB |
testcase_37 | AC | 1 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:10:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | int a,b;scanf("%d%d",&a,&b); | ~~~~~^~~~~~~~~~~~~~ main.cpp:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%d%d%d%d%d%d",&c,&d,&e,&f,&g,&h); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:13:34: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | for(int i=0;i<a;i++)scanf("%s",str[i]); | ~~~~~^~~~~~~~~~~~~
ソースコード
#include<stdio.h> #include<algorithm> #include<queue> using namespace std; int dx[]={1,0,-1,0}; int dy[]={0,1,0,-1}; char str[100][100]; int bfs[52][52][3600]; int main(){ int a,b;scanf("%d%d",&a,&b); int c,d,e,f,g,h; scanf("%d%d%d%d%d%d",&c,&d,&e,&f,&g,&h); for(int i=0;i<a;i++)scanf("%s",str[i]); bfs[d][e][c]=1; queue<pair<pair<int,int>,int> > Q; Q.push(make_pair(make_pair(d,e),c)); while(Q.size()){ int row=Q.front().first.first; int col=Q.front().first.second; int yu=Q.front().second; Q.pop(); for(int i=0;i<4;i++){ int tr=row+dx[i];int tc=col+dy[i]; int ty=yu; if(tr<0||tc<0||tr>=a||tc>=b)continue; if(str[tr][tc]=='*')ty++; else ty--; if(ty<0||ty>=3600)continue; if(bfs[tr][tc][ty])continue; bfs[tr][tc][ty]=1; Q.push(make_pair(make_pair(tr,tc),ty)); } } if(bfs[g][h][f])printf("Yes\n");else printf("No\n"); }