結果
問題 | No.659 徘徊迷路 |
ユーザー | paruki |
提出日時 | 2018-03-10 19:43:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 66 ms / 2,000 ms |
コード長 | 2,252 bytes |
コンパイル時間 | 1,810 ms |
コンパイル使用メモリ | 175,552 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-14 17:53:18 |
合計ジャッジ時間 | 3,133 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 15 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 21 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 3 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 24 ms
6,816 KB |
testcase_09 | AC | 57 ms
6,816 KB |
testcase_10 | AC | 65 ms
6,816 KB |
testcase_11 | AC | 65 ms
6,820 KB |
testcase_12 | AC | 13 ms
6,820 KB |
testcase_13 | AC | 57 ms
6,820 KB |
testcase_14 | AC | 57 ms
6,820 KB |
testcase_15 | AC | 66 ms
6,820 KB |
testcase_16 | AC | 66 ms
6,816 KB |
ソースコード
#define _USE_MATH_DEFINES #include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define MT make_tuple #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() #define RT return #define vv(a,b,c,d) vector<vector<a> >(b,vector<a>(c,d)) #define vvv(a,b,c,d,e) vector<vector<vector<a> > >(b,vv(a,c,d,e)) using ll = long long; using pii = pair<int, int>; using vi = vector<int>; using vll = vector<ll>; template<class Val> vector<vector<Val> > mulMat(const vector<vector<Val> > &A, const vector<vector<Val> > &B) { auto n = A.size(), m = A[0].size(), p = B[0].size(); vector<vector<Val> > res(n, vector<Val>(p)); for (int i = 0; i < n; ++i)for (int j = 0; j < p; ++j) for (int k = 0; k < m; ++k) res[i][j] += A[i][k] * B[k][j]; return res; } template<class Val> vector<vector<Val> > powMat(vector<vector<Val> > A, long long k) { auto n = A.size(); vector<vector<Val> > res(n, vector<Val>(n)); for (int i = 0; i < n; ++i)res[i][i] = 1; while (k) { if (k % 2)res = mulMat(res, A); k /= 2; A = mulMat(A, A); } return res; } const int DY[] = { -1,0,1,0 }; const int DX[] = { 0,1,0,-1 }; int R, C, T, Sy, Sx, Gy, Gx; string B[10]; int id(int y, int x) { return y * C + x; } int main() { ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(20); cin >> R >> C >> T >> Sy >> Sx >> Gy >> Gx; rep(y, R)cin >> B[y]; auto A = vv(double, R*C, R*C, 0); rep(y, R)rep(x, C)if (B[y][x] != '#') { int cnt = 0; rep(i, 4) { int ny = y + DY[i], nx = x + DX[i]; if (B[ny][nx] == '.')cnt++; } rep(i, 4) { int ny = y + DY[i], nx = x + DX[i]; if (B[ny][nx] == '.') { A[id(y, x)][id(ny, nx)] = 1.0 / cnt; } } if (cnt == 0)A[id(y, x)][id(y, x)] = 1; } A = powMat(A, T); cout << A[id(Sy, Sx)][id(Gy, Gx)] << endl; }