結果

問題 No.124 門松列(3)
ユーザー yuyyuyuyuyyuyu
提出日時 2015-08-04 18:52:53
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 810 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 76,540 KB
実行使用メモリ 79,284 KB
最終ジャッジ日時 2024-07-18 01:18:18
合計ジャッジ時間 3,321 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
78,500 KB
testcase_01 AC 69 ms
75,540 KB
testcase_02 AC 75 ms
75,552 KB
testcase_03 AC 104 ms
79,284 KB
testcase_04 AC 80 ms
77,856 KB
testcase_05 AC 78 ms
78,088 KB
testcase_06 AC 71 ms
75,452 KB
testcase_07 AC 67 ms
75,516 KB
testcase_08 AC 70 ms
75,668 KB
testcase_09 AC 71 ms
75,308 KB
testcase_10 AC 69 ms
75,660 KB
testcase_11 AC 69 ms
75,648 KB
testcase_12 AC 69 ms
75,828 KB
testcase_13 AC 67 ms
75,656 KB
testcase_14 AC 70 ms
75,292 KB
testcase_15 AC 72 ms
75,416 KB
testcase_16 AC 83 ms
78,620 KB
testcase_17 AC 69 ms
75,556 KB
testcase_18 AC 70 ms
75,408 KB
testcase_19 AC 70 ms
75,332 KB
testcase_20 AC 80 ms
78,212 KB
testcase_21 AC 72 ms
75,836 KB
testcase_22 AC 69 ms
75,580 KB
testcase_23 AC 73 ms
76,548 KB
testcase_24 AC 77 ms
76,600 KB
testcase_25 AC 73 ms
76,456 KB
testcase_26 AC 74 ms
76,732 KB
testcase_27 AC 70 ms
76,704 KB
testcase_28 AC 74 ms
78,092 KB
testcase_29 AC 78 ms
77,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

dxdy=zip([-1,0,1,0],[0,1,0,-1])
def kadomatsu(a,b,c):
    if a==0 or b==0:
        return True
    else:
        if (a!=b and b!=c and c!=a) and not (a<b<c or a>b>c):
            return True
        else:
            return False
W,H=map(int,raw_input().split())
M=[map(int,raw_input().split()) for _ in xrange(H)]
que=[[0,0,0]]
cost=[[[-1]*W for _ in xrange(H)] for i in xrange(10)]
cost[0][0][0]=0
while que:
    [bef,x,y]=que.pop(0)
    cur=M[y][x]
    if x==W-1 and y==H-1:
        print cost[bef][y][x]
        exit()
    for dx,dy in dxdy:
        nx,ny=x+dx,y+dy
        if not(0<=nx<W and 0<=ny<H):continue
        aft=M[ny][nx]
        if not kadomatsu(bef,cur,aft):continue
        if cost[cur][ny][nx]!=-1:continue
        cost[cur][ny][nx]=cost[bef][y][x]+1
        que.append([cur,nx,ny])
print -1
0