結果
問題 | No.367 ナイトの転身 |
ユーザー | 37kt_ |
提出日時 | 2016-05-16 11:43:49 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 675 ms / 2,000 ms |
コード長 | 943 bytes |
コンパイル時間 | 373 ms |
コンパイル使用メモリ | 82,420 KB |
実行使用メモリ | 105,792 KB |
最終ジャッジ日時 | 2024-06-06 02:37:16 |
合計ジャッジ時間 | 6,110 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 62 ms
68,188 KB |
testcase_01 | AC | 63 ms
67,552 KB |
testcase_02 | AC | 62 ms
67,912 KB |
testcase_03 | AC | 63 ms
68,788 KB |
testcase_04 | AC | 65 ms
68,544 KB |
testcase_05 | AC | 63 ms
67,336 KB |
testcase_06 | AC | 70 ms
69,588 KB |
testcase_07 | AC | 62 ms
68,524 KB |
testcase_08 | AC | 63 ms
68,516 KB |
testcase_09 | AC | 63 ms
67,256 KB |
testcase_10 | AC | 433 ms
102,704 KB |
testcase_11 | AC | 675 ms
105,792 KB |
testcase_12 | AC | 353 ms
89,932 KB |
testcase_13 | AC | 331 ms
89,196 KB |
testcase_14 | AC | 311 ms
88,800 KB |
testcase_15 | AC | 129 ms
79,436 KB |
testcase_16 | AC | 314 ms
87,416 KB |
testcase_17 | AC | 151 ms
80,808 KB |
testcase_18 | AC | 166 ms
80,864 KB |
testcase_19 | AC | 193 ms
81,712 KB |
testcase_20 | AC | 147 ms
80,764 KB |
testcase_21 | AC | 189 ms
81,456 KB |
testcase_22 | AC | 78 ms
75,008 KB |
testcase_23 | AC | 120 ms
78,728 KB |
testcase_24 | AC | 117 ms
79,584 KB |
testcase_25 | AC | 112 ms
78,884 KB |
testcase_26 | AC | 99 ms
78,984 KB |
ソースコード
from queue import Queue dx = [[-2, -2, -1, 1, 2, 2, 1, -1], [-1, -1, 1, 1]] dy = [[-1, 1, 2, 2, 1, -1, -2, -2], [-1, 1, 1, -1]] h, w = map(int, input().split()) s = [input() for i in range(h)] sx, sy, gx, gy = [-1, -1, -1, -1] for i, line in enumerate(s): for j, c in enumerate(line): if c == "S": sx, sy = i, j elif c == "G": gx, gy = i, j dist = [[ [-1, -1] for j in range(w)] for i in range(h)] q = Queue() dist[sx][sy][0] = 0 q.put((sx, sy, 0)) while not q.empty(): x, y, d = q.get() for i in range(len(dx[d])): nx, ny = x + dx[d][i], y + dy[d][i] if nx < 0 or h <= nx or ny < 0 or w <= ny: continue nd = d ^ (1 if s[nx][ny] == "R" else 0) if dist[nx][ny][nd] == -1: dist[nx][ny][nd] = dist[x][y][d] + 1 q.put((nx, ny, nd)) res = -1 if dist[gx][gy][0] == -1: res = dist[gx][gy][1] elif dist[gx][gy][1] == -1: res = dist[gx][gy][0] else: res = min(dist[gx][gy]) print(res)