結果
問題 | No.340 雪の足跡 |
ユーザー | Tawara |
提出日時 | 2016-01-28 13:10:38 |
言語 | Python2 (2.7.18) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,767 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 28,800 KB |
最終ジャッジ日時 | 2024-09-21 17:46:21 |
合計ジャッジ時間 | 7,409 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 13 ms
12,160 KB |
testcase_01 | AC | 14 ms
7,040 KB |
testcase_02 | AC | 14 ms
6,912 KB |
testcase_03 | AC | 14 ms
6,912 KB |
testcase_04 | AC | 14 ms
6,912 KB |
testcase_05 | AC | 13 ms
6,912 KB |
testcase_06 | AC | 14 ms
6,912 KB |
testcase_07 | AC | 14 ms
7,040 KB |
testcase_08 | AC | 13 ms
6,784 KB |
testcase_09 | AC | 14 ms
6,912 KB |
testcase_10 | AC | 14 ms
6,912 KB |
testcase_11 | AC | 27 ms
7,168 KB |
testcase_12 | AC | 22 ms
7,040 KB |
testcase_13 | AC | 30 ms
6,912 KB |
testcase_14 | AC | 448 ms
9,856 KB |
testcase_15 | AC | 556 ms
9,984 KB |
testcase_16 | AC | 320 ms
8,064 KB |
testcase_17 | AC | 784 ms
10,752 KB |
testcase_18 | AC | 619 ms
10,624 KB |
testcase_19 | AC | 781 ms
10,624 KB |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
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()) x = B[0]%W; y = B[0]/W; for j in xrange(1,M+1): nx = B[j]%W; ny = B[j]/W if y == ny: if x < nx: for k in xrange(x+1,nx+1): EX[y][k]+=1 else: for k in xrange(nx+1,x+1): EX[y][k]+=1 else: if y < ny: for k in xrange(y+1,ny+1): EY[x][k]+=1 else: for k in xrange(ny+1,y+1): EY[x][k]+=1 x = nx; y = ny 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()