結果

問題 No.179 塗り分け
ユーザー Ryushi-techRyushi-tech
提出日時 2020-06-24 22:45:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 990 bytes
コンパイル時間 766 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-03 20:24:32
合計ジャッジ時間 6,668 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 WA -
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 41 ms
57,780 KB
testcase_08 AC 46 ms
60,012 KB
testcase_09 AC 48 ms
60,544 KB
testcase_10 AC 48 ms
61,952 KB
testcase_11 AC 47 ms
61,184 KB
testcase_12 AC 479 ms
76,220 KB
testcase_13 AC 40 ms
52,736 KB
testcase_14 WA -
testcase_15 AC 39 ms
51,840 KB
testcase_16 AC 39 ms
51,712 KB
testcase_17 AC 37 ms
52,224 KB
testcase_18 AC 59 ms
65,664 KB
testcase_19 AC 60 ms
65,152 KB
testcase_20 AC 44 ms
58,368 KB
testcase_21 AC 43 ms
57,856 KB
testcase_22 AC 105 ms
75,904 KB
testcase_23 AC 47 ms
60,416 KB
testcase_24 AC 107 ms
76,240 KB
testcase_25 AC 50 ms
61,440 KB
testcase_26 AC 151 ms
75,800 KB
testcase_27 AC 205 ms
76,300 KB
testcase_28 AC 280 ms
76,660 KB
testcase_29 AC 273 ms
76,004 KB
testcase_30 AC 257 ms
76,032 KB
testcase_31 WA -
testcase_32 AC 110 ms
75,648 KB
testcase_33 WA -
testcase_34 AC 348 ms
76,160 KB
testcase_35 AC 443 ms
76,400 KB
testcase_36 AC 38 ms
52,096 KB
testcase_37 AC 38 ms
52,608 KB
testcase_38 AC 37 ms
51,968 KB
testcase_39 AC 37 ms
52,480 KB
testcase_40 AC 37 ms
52,352 KB
testcase_41 AC 38 ms
51,968 KB
testcase_42 AC 38 ms
52,608 KB
testcase_43 AC 63 ms
66,944 KB
testcase_44 AC 97 ms
75,900 KB
testcase_45 AC 54 ms
63,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
S = []
for i in range(h):
    S.append(input())

cnt = 0
D = set()
for i in range(h):
    for j in range(w):
        if S[i][j] == "#":
            D.add(i * 1000 + j)

l = len(D)
if l & 1 or not D:
    print("NO")
    exit()
E = sorted(list(D))

for x in range(h):
    for y in range(w):
        tmp = set()
        cnt = 0
        for e in E:
            z = e + x * 1000 + y
            if e in tmp:
                continue
            elif z in D:
                cnt += 1
                tmp.add(z)
        if l // 2 == cnt:
            print("YES")
            exit()
#print("turn2")
for x in range(h - 1, -1, -1):
    for y in range(0, -w, -1):
        tmp = set()
        cnt = 0
        for e in E[::-1]:
            z = e + x * 1000 + y
            if e in tmp:
                continue
            elif z in D:
                cnt += 1
                tmp.add(z)
        if l // 2 == cnt:
            print("YES")
            exit()
print("NO")
0