結果

問題 No.460 裏表ちわーわ
ユーザー h_nosonh_noson
提出日時 2017-01-26 23:49:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 1,292 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,592 KB
最終ジャッジ日時 2024-06-06 02:41:12
合計ジャッジ時間 5,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
74,880 KB
testcase_01 AC 46 ms
60,288 KB
testcase_02 AC 108 ms
76,320 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 84 ms
75,904 KB
testcase_06 AC 94 ms
76,160 KB
testcase_07 AC 114 ms
76,644 KB
testcase_08 AC 144 ms
76,576 KB
testcase_09 AC 75 ms
73,344 KB
testcase_10 AC 154 ms
76,692 KB
testcase_11 AC 92 ms
76,112 KB
testcase_12 AC 115 ms
76,704 KB
testcase_13 AC 251 ms
77,576 KB
testcase_14 AC 280 ms
77,136 KB
testcase_15 AC 299 ms
77,040 KB
testcase_16 AC 89 ms
76,160 KB
testcase_17 AC 275 ms
77,404 KB
testcase_18 AC 266 ms
77,316 KB
testcase_19 AC 249 ms
77,500 KB
testcase_20 AC 90 ms
76,248 KB
testcase_21 AC 262 ms
76,848 KB
testcase_22 AC 264 ms
77,356 KB
testcase_23 AC 247 ms
77,324 KB
testcase_24 AC 302 ms
77,592 KB
testcase_25 AC 37 ms
52,224 KB
testcase_26 AC 47 ms
61,696 KB
testcase_27 AC 58 ms
65,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10**9
dx = [-1,-1,-1, 0, 1, 1, 1, 0]
dy = [-1, 0, 1, 1, 1, 0,-1,-1]

def dfs(y,x):
    if x == n:
        if y > 0:
            for j in range(n-2,n):
                if a[y-1][j]:
                    return INF
        return dfs(y+1,0)
    elif y == m:
        for i in range(m-2,m):
            for j in range(n):
                if a[i][j]:
                    return INF
        return 0
    if y > 0:
        ok = True
        for j in range(n):
            if a[y-1][j]:
                ok = False
        if ok:
            return dfs(y+1,0)
    ret = INF
    if x == 0 or y == 0 or a[y-1][x-1]:
        a[y][x] ^= 1
        for i in range(8):
            ny = y + dy[i]
            nx = x + dx[i]
            if ny < 0 or ny >= m or nx < 0 or nx >= n: continue
            a[ny][nx] ^= 1
        ret = min(ret,dfs(y,x+1)+1)
        a[y][x] ^= 1
        for i in range(8):
            ny = y + dy[i]
            nx = x + dx[i]
            if ny < 0 or ny >= m or nx < 0 or nx >= n: continue
            a[ny][nx] ^= 1
    if x == 0 or y == 0 or not a[y-1][x-1]:
        ret = min(ret,dfs(y,x+1))
    return ret

m,n = map(int,input().split(' '))
a = [list(map(int,input().split(' '))) for i in range(m)]

ans = dfs(0,0)
if ans < INF:
    print(ans)
else:
    print("Impossible")
0