結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
76,544 KB
testcase_01 AC 85 ms
77,184 KB
testcase_02 AC 87 ms
77,440 KB
testcase_03 AC 82 ms
75,136 KB
testcase_04 AC 81 ms
75,520 KB
testcase_05 AC 80 ms
75,264 KB
testcase_06 AC 80 ms
75,776 KB
testcase_07 AC 87 ms
76,800 KB
testcase_08 AC 86 ms
76,544 KB
testcase_09 AC 864 ms
93,824 KB
testcase_10 AC 1,448 ms
103,168 KB
testcase_11 AC 90 ms
77,440 KB
testcase_12 AC 81 ms
75,392 KB
testcase_13 AC 90 ms
77,824 KB
testcase_14 AC 118 ms
77,824 KB
testcase_15 AC 182 ms
78,720 KB
testcase_16 AC 182 ms
78,336 KB
testcase_17 AC 84 ms
77,056 KB
testcase_18 AC 93 ms
77,824 KB
testcase_19 AC 86 ms
77,184 KB
testcase_20 AC 92 ms
77,952 KB
testcase_21 AC 1,705 ms
98,304 KB
testcase_22 AC 93 ms
78,208 KB
testcase_23 AC 121 ms
77,952 KB
testcase_24 AC 89 ms
77,696 KB
testcase_25 AC 82 ms
75,520 KB
testcase_26 AC 82 ms
75,904 KB
testcase_27 AC 82 ms
75,136 KB
testcase_28 AC 82 ms
75,520 KB
testcase_29 AC 788 ms
94,976 KB
testcase_30 AC 83 ms
75,648 KB
testcase_31 AC 84 ms
77,056 KB
testcase_32 AC 91 ms
77,952 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