結果

問題 No.86 TVザッピング(2)
ユーザー yaoshimaxyaoshimax
提出日時 2015-03-01 22:33:48
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,235 ms / 5,000 ms
コード長 1,681 bytes
コンパイル時間 1,744 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 94,336 KB
最終ジャッジ日時 2024-06-07 10:34:50
合計ジャッジ時間 6,744 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
76,288 KB
testcase_01 AC 91 ms
77,056 KB
testcase_02 AC 88 ms
75,392 KB
testcase_03 AC 90 ms
75,520 KB
testcase_04 AC 85 ms
75,648 KB
testcase_05 AC 86 ms
75,520 KB
testcase_06 AC 86 ms
75,648 KB
testcase_07 AC 86 ms
75,776 KB
testcase_08 AC 95 ms
77,440 KB
testcase_09 AC 1,235 ms
93,952 KB
testcase_10 AC 89 ms
75,264 KB
testcase_11 AC 93 ms
77,312 KB
testcase_12 AC 86 ms
75,392 KB
testcase_13 AC 93 ms
77,696 KB
testcase_14 AC 124 ms
77,952 KB
testcase_15 AC 180 ms
78,848 KB
testcase_16 AC 179 ms
78,720 KB
testcase_17 AC 96 ms
77,824 KB
testcase_18 AC 101 ms
77,568 KB
testcase_19 AC 94 ms
77,312 KB
testcase_20 AC 86 ms
75,648 KB
testcase_21 AC 85 ms
75,264 KB
testcase_22 AC 95 ms
78,080 KB
testcase_23 AC 132 ms
78,080 KB
testcase_24 AC 98 ms
77,568 KB
testcase_25 AC 87 ms
75,648 KB
testcase_26 AC 86 ms
75,648 KB
testcase_27 AC 87 ms
75,648 KB
testcase_28 AC 86 ms
75,392 KB
testcase_29 AC 1,119 ms
94,336 KB
testcase_30 AC 86 ms
75,520 KB
testcase_31 AC 89 ms
76,544 KB
testcase_32 AC 97 ms
78,336 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)]
sur=[(-1,-1),(1,1),(1,-1),(-1,1),(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
        if i>0 and i+1<N and j>0 and j+1<M:
            ng=True
            for (a,b) in sur:
                if A[i+a][j+b]!='.':
                    ng=False
                    break
            if ng:
                print "NO"
                exit()
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