結果
問題 | No.659 徘徊迷路 |
ユーザー | weizen |
提出日時 | 2018-03-22 15:11:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,181 bytes |
コンパイル時間 | 365 ms |
コンパイル使用メモリ | 26,112 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-24 20:07:16 |
合計ジャッジ時間 | 1,212 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 33 ms
5,376 KB |
testcase_11 | AC | 45 ms
5,376 KB |
testcase_12 | AC | 0 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 46 ms
5,376 KB |
testcase_16 | AC | 46 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:14:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 14 | scanf("%d %d %lld",&R,&C,&T); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~ main.cpp:16:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 16 | scanf("%d %d",&sy,&sx); | ~~~~~^~~~~~~~~~~~~~~~~ main.cpp:17:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 17 | scanf("%d %d",&gy,&gx); | ~~~~~^~~~~~~~~~~~~~~~~ main.cpp:20:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 20 | scanf("%s",tmp); | ~~~~~^~~~~~~~~~
ソースコード
#include <stdio.h> int R,C; long long T; int sy, sx; int gy, gx; char board[12][12]; //sentinelを準備する。 double prob_board[12][12]; double prob_tmpboard[12][12]; char tmp[11]; int main(){ scanf("%d %d %lld",&R,&C,&T); scanf("%d %d",&sy,&sx); scanf("%d %d",&gy,&gx); for(int y = 1; y <= R; y++){ scanf("%s",tmp); for(int x = 1; x <= C; x++){ board[x][y] = (tmp[x-1] == '#')? 0:1; prob_board[x][y] = 0.0; } } for(int y = 0; y <= R+1; y++){ board[0][y] = board[R+1][y] = 0; prob_board[0][y] = prob_board[R+1][y] = 0.0; } for(int x = 0; x <= C+1; x++){ board[x][0] = board[x][C+1] = 0; prob_board[x][0] = prob_board[x][C+1] = 0.0; } /* for(int y = 1; y <= R; y++){ for(int x = 1; x <= C; x++){ printf("%d,", board[x][y]); } puts(""); } puts("-"); */ for(int x = 1; x <= C; x++){ for(int y = 1; y <= R ;y++){ int cnt = 0; if(board[x][y]==0) continue; if(board[x][y-1] != 0) cnt++; if(board[x][y+1] != 0) cnt++; if(board[x-1][y] != 0) cnt++; if(board[x+1][y] != 0) cnt++; board[x][y]=cnt; } } /* for(int y = 1; y <= R; y++){ for(int x = 1; x <= C; x++){ printf("%d,", board[x][y]); } puts(""); } */ prob_board[sx+1][sy+1] = 1.0; T = T % 100000; for(long long move = 1; move <= T; move++){ for(int x = 1; x <= C; x++){ for(int y = 1; y <= R; y++){ if(board[x][y] != 0){ prob_tmpboard[x][y] = 0.0; if(board[x-1][y]!=0) prob_tmpboard[x][y] += prob_board[x-1][y]/(double)board[x-1][y]; if(board[x+1][y]!=0) prob_tmpboard[x][y] += prob_board[x+1][y]/(double)board[x+1][y]; if(board[x][y-1]!=0) prob_tmpboard[x][y] += prob_board[x][y-1]/(double)board[x][y-1]; if(board[x][y+1]!=0) prob_tmpboard[x][y] += prob_board[x][y+1]/(double)board[x][y+1]; } } } // printf("move=%lld-------------------------------\n",move); for(int y = 1; y <= R; y++){ for(int x = 1; x <= C; x++){ prob_board[x][y] = prob_tmpboard[x][y]; // printf("%.3f ", prob_board[x][y]); } // puts(""); } } if(board[gx+1][gy+1] != 0){ printf("%.12f\n",prob_board[gx+1][gy+1]); }else{ if(sx==gx && sy==gy){ puts("1.0"); }else{ puts("0.0"); } } }