結果

問題 No.86 TVザッピング(2)
ユーザー ytftytft
提出日時 2022-11-09 22:32:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,802 ms / 5,000 ms
コード長 796 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,564 KB
最終ジャッジ日時 2024-07-23 03:31:03
合計ジャッジ時間 23,763 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 523 ms
44,432 KB
testcase_01 AC 523 ms
44,304 KB
testcase_02 AC 528 ms
44,560 KB
testcase_03 AC 523 ms
44,468 KB
testcase_04 AC 526 ms
44,176 KB
testcase_05 AC 530 ms
44,560 KB
testcase_06 AC 523 ms
44,044 KB
testcase_07 AC 521 ms
44,424 KB
testcase_08 AC 1,802 ms
44,172 KB
testcase_09 AC 511 ms
43,924 KB
testcase_10 AC 512 ms
44,300 KB
testcase_11 AC 521 ms
44,564 KB
testcase_12 AC 519 ms
44,436 KB
testcase_13 AC 520 ms
44,304 KB
testcase_14 AC 1,047 ms
44,048 KB
testcase_15 AC 873 ms
44,432 KB
testcase_16 AC 1,049 ms
44,428 KB
testcase_17 AC 539 ms
44,432 KB
testcase_18 AC 553 ms
44,556 KB
testcase_19 AC 539 ms
44,172 KB
testcase_20 AC 531 ms
44,424 KB
testcase_21 AC 535 ms
43,920 KB
testcase_22 AC 537 ms
44,556 KB
testcase_23 AC 1,206 ms
44,304 KB
testcase_24 AC 522 ms
44,560 KB
testcase_25 AC 523 ms
44,048 KB
testcase_26 AC 518 ms
44,432 KB
testcase_27 AC 524 ms
44,048 KB
testcase_28 AC 508 ms
44,176 KB
testcase_29 AC 518 ms
44,176 KB
testcase_30 AC 512 ms
44,180 KB
testcase_31 AC 515 ms
44,052 KB
testcase_32 AC 518 ms
44,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,copy
import numpy as np
input=lambda:sys.stdin.readline().rstrip()
turn=np.array([[0,1],[-1,0]])
def search(B,pos,d,cnt):
	A=copy.copy(B)
	orig=[pos[0],pos[1]]
	while 1:
		for i in range(2):
			if A[(pos+d)[0]][(pos+d)[1]]==0:
				pos+=d
				A[pos[0]][pos[1]]=1
				cnt-=1
				break
			d=d@turn
		else:
			return cnt==0 and pos[0]==orig[0] and pos[1]==orig[1]
H,W=map(int,input().split())
A=np.array([[1 for j in range(W+2)] for i in range(H+2)])
ans,cnt=0,0
for i in range(H):
	S=input()
	for j in range(W):
		A[i+1][j+1]=(S[j]=='#')
		cnt+=(S[j]=='.')
if cnt>2*(H+W):
	print('NO')
	sys.exit()
for i in range(H):
	for j in range(W):
		if A[i+1][j+1]:
			continue
		d=np.array([1,0])
		for k in range(4):
			ans|=search(A,np.array([i+1,j+1]),d,cnt)
			d=d@turn
print(['NO','YES'][ans])
0