結果
問題 | No.659 徘徊迷路 |
ユーザー | どらら |
提出日時 | 2018-03-02 23:19:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,346 bytes |
コンパイル時間 | 2,036 ms |
コンパイル使用メモリ | 178,024 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-22 10:41:57 |
合計ジャッジ時間 | 3,154 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 10 ms
6,940 KB |
testcase_03 | AC | 6 ms
6,940 KB |
testcase_04 | AC | 47 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,948 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 72 ms
6,944 KB |
testcase_10 | AC | 88 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 113 ms
6,944 KB |
testcase_14 | AC | 118 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; typedef unsigned long long ull; int vy[4] = {-1,1,0,0}; int vx[4] = {0,0,-1,1}; int main(){ int R, C, T; cin >> R >> C >> T; int Sy, Sx, Gy, Gx; cin >> Sy >> Sx; cin >> Gy >> Gx; vector<string> B(R); rep(i,R){ cin >> B[i]; } vector<vector<double>> prev(R,vector<double>(C,0)), next(R,vector<double>(C,0)); prev[Sy][Sx] = 1.0; rep(t,min(T,100000)){ /* cout << t << endl; rep(i,R){ rep(j,C){ cout << prev[i][j] << "\t"; } cout << endl; } cout << endl; */ rep(i,R) rep(j,C) next[i][j] = 0; rep(i,R) rep(j,C){ if(B[i][j] == '#') continue; int cnt = 0; rep(k,4){ int ny = i + vy[k]; int nx = j + vx[k]; if(B[ny][nx] == '.') cnt++; } if(cnt == 0){ next[i][j] = prev[i][j]; }else{ rep(k,4){ int ny = i + vy[k]; int nx = j + vx[k]; if(B[ny][nx] == '.') next[ny][nx] += 1.0 / cnt * prev[i][j]; } } } prev = next; } printf("%.12lf\n", prev[Gy][Gx]); return 0; }