結果
問題 | No.340 雪の足跡 |
ユーザー | Tawara |
提出日時 | 2016-01-27 11:48:39 |
言語 | PyPy2 (7.3.15) |
結果 |
AC
|
実行時間 | 586 ms / 1,000 ms |
コード長 | 1,791 bytes |
コンパイル時間 | 1,310 ms |
コンパイル使用メモリ | 76,304 KB |
実行使用メモリ | 114,432 KB |
最終ジャッジ日時 | 2024-09-21 17:40:14 |
合計ジャッジ時間 | 11,241 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 80 ms
77,576 KB |
testcase_01 | AC | 79 ms
77,448 KB |
testcase_02 | AC | 77 ms
77,368 KB |
testcase_03 | AC | 78 ms
77,548 KB |
testcase_04 | AC | 80 ms
77,304 KB |
testcase_05 | AC | 77 ms
77,328 KB |
testcase_06 | AC | 79 ms
77,100 KB |
testcase_07 | AC | 79 ms
77,484 KB |
testcase_08 | AC | 76 ms
77,476 KB |
testcase_09 | AC | 78 ms
77,432 KB |
testcase_10 | AC | 77 ms
77,320 KB |
testcase_11 | AC | 104 ms
79,132 KB |
testcase_12 | AC | 99 ms
79,356 KB |
testcase_13 | AC | 101 ms
80,036 KB |
testcase_14 | AC | 136 ms
82,312 KB |
testcase_15 | AC | 143 ms
83,324 KB |
testcase_16 | AC | 122 ms
81,296 KB |
testcase_17 | AC | 145 ms
83,588 KB |
testcase_18 | AC | 148 ms
83,752 KB |
testcase_19 | AC | 149 ms
83,708 KB |
testcase_20 | AC | 316 ms
106,220 KB |
testcase_21 | AC | 226 ms
81,176 KB |
testcase_22 | AC | 109 ms
93,560 KB |
testcase_23 | AC | 402 ms
105,148 KB |
testcase_24 | AC | 291 ms
98,700 KB |
testcase_25 | AC | 314 ms
105,740 KB |
testcase_26 | AC | 147 ms
80,708 KB |
testcase_27 | AC | 110 ms
78,900 KB |
testcase_28 | AC | 154 ms
81,572 KB |
testcase_29 | AC | 428 ms
100,480 KB |
testcase_30 | AC | 347 ms
95,368 KB |
testcase_31 | AC | 525 ms
111,288 KB |
testcase_32 | AC | 577 ms
114,176 KB |
testcase_33 | AC | 538 ms
114,432 KB |
testcase_34 | AC | 586 ms
114,304 KB |
testcase_35 | AC | 469 ms
114,048 KB |
testcase_36 | AC | 466 ms
113,792 KB |
ソースコード
from sys import stdin from Queue import deque def main(): dxy = ((1,0),(0,1),(-1,0),(0,-1)) W,H,N = map(int,stdin.readline().split()) MD = W*H+1 EX = [[0]*(W+2) for j in xrange(H)] EY = [[0]*(H+2) for i in xrange(W)] for i in xrange(N): M = int(stdin.readline()) B = map(int,stdin.readline().split()) for j in xrange(M): x = B[j]%W; y = B[j]/W; nx = B[j+1]%W; ny = B[j+1]/W if y == ny: if x < nx: EX[y][x+1]+=1; EX[y][nx+1]-=1 else: EX[y][nx+1]+=1; EX[y][x+1]-=1 else: if y < ny: EY[x][y+1]+=1; EY[x][ny+1]-=1 else: EY[x][ny+1]+=1; EY[x][y+1]-=1 x,y = nx,ny for j in xrange(H): for i in xrange(1,W):EX[j][i+1] += EX[j][i] for i in xrange(W): for j in xrange(1,H):EY[i][j+1] += EY[i][j] D = [[MD]*W for i in xrange(H)] D[0][0] = 0; G = W+H-2 Q = deque([(0,0,0)]) while Q: x,y,d = Q.popleft() if x+y == G: print d; break for dx,dy in dxy: if dx > 0: nx = x + 1 if EX[y][nx]>0 and D[y][nx] > d+1: D[y][nx] = d+1; Q.append((nx,y,d+1)) elif dx < 0: nx = x - 1 if EX[y][x]>0 and D[y][nx] > d+1: D[y][nx] = d+1; Q.append((nx,y,d+1)) elif dy > 0: ny = y + 1 if EY[x][ny]>0 and D[ny][x] > d+1: D[ny][x] = d+1; Q.append((x,ny,d+1)) else: ny = y - 1 if EY[x][y]>0 and D[ny][x] > d+1: D[ny][x] = d+1; Q.append((x,ny,d+1)) else: print "Odekakedekinai.." if __name__ == "__main__": main()