結果

問題 No.86 TVザッピング(2)
ユーザー yaoshimaxyaoshimax
提出日時 2015-03-01 22:26:29
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,691 ms / 5,000 ms
コード長 1,366 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 76,560 KB
実行使用メモリ 103,544 KB
最終ジャッジ日時 2024-12-25 12:48:17
合計ジャッジ時間 8,633 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
76,448 KB
testcase_01 AC 78 ms
76,716 KB
testcase_02 AC 83 ms
76,732 KB
testcase_03 AC 75 ms
75,264 KB
testcase_04 AC 79 ms
75,320 KB
testcase_05 AC 78 ms
75,396 KB
testcase_06 AC 78 ms
75,416 KB
testcase_07 AC 78 ms
77,088 KB
testcase_08 AC 75 ms
76,552 KB
testcase_09 AC 857 ms
93,996 KB
testcase_10 AC 1,432 ms
103,544 KB
testcase_11 AC 82 ms
77,468 KB
testcase_12 AC 76 ms
75,276 KB
testcase_13 AC 84 ms
77,836 KB
testcase_14 AC 111 ms
78,240 KB
testcase_15 AC 178 ms
79,004 KB
testcase_16 AC 172 ms
79,112 KB
testcase_17 AC 77 ms
77,112 KB
testcase_18 AC 84 ms
77,888 KB
testcase_19 AC 82 ms
77,464 KB
testcase_20 AC 83 ms
77,852 KB
testcase_21 AC 1,691 ms
98,444 KB
testcase_22 AC 85 ms
78,600 KB
testcase_23 AC 117 ms
78,004 KB
testcase_24 AC 80 ms
77,840 KB
testcase_25 AC 75 ms
75,564 KB
testcase_26 AC 77 ms
75,772 KB
testcase_27 AC 76 ms
75,420 KB
testcase_28 AC 73 ms
75,536 KB
testcase_29 AC 784 ms
94,580 KB
testcase_30 AC 76 ms
75,268 KB
testcase_31 AC 77 ms
76,824 KB
testcase_32 AC 81 ms
78,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,raw_input().split())
A=[raw_input() for i in range(N)]
dir=[(1,0),(0,1),(-1,0),(0,-1)]
cnt=0 
for i in range(N):
    for j in range(M):
        if A[i][j]=='.':
            cnt+=1
for i in range(N):
    for j in range(M):
        if A[i][j] =='.':
            for k in range(len(dir)):
                arrived=[[False for m in range(M)]for n in range(N)]
                a,b=i,j
                curCnt = 0
                arrived[a][b]=True
                #print (a,b),
                for d in range(6):
                    na,nb=a+dir[(k+d)%4][0],b+dir[(k+d)%4][1]
                    ok = False
                    while na<N and na >=0 and nb <M and nb>=0 and A[na][nb]=='.' and (arrived[na][nb]==False or (i== na and j==nb)):
                            curCnt+=1
                            #print (na,nb) ,
                            arrived[na][nb]=True
                            a=na
                            b=nb
                            ok=True
                            if a==i and b==j:
                                break
                            na,nb=a+dir[(k+d)%4][0],b+dir[(k+d)%4][1]
                    if ok == False or (a==i and b==j ):
                        break
                #print 
                if a==i and b==j and cnt == curCnt:
                    print "YES"
                    exit()
print "NO"


0