結果

問題 No.460 裏表ちわーわ
ユーザー h_nosonh_noson
提出日時 2017-01-26 23:29:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,069 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-06 02:40:01
合計ジャッジ時間 15,181 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 115 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 1,067 ms
10,752 KB
testcase_09 AC 37 ms
10,880 KB
testcase_10 AC 1,070 ms
10,880 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,079 ms
10,880 KB
testcase_14 AC 1,050 ms
10,752 KB
testcase_15 AC 1,084 ms
10,752 KB
testcase_16 WA -
testcase_17 AC 1,038 ms
10,880 KB
testcase_18 AC 1,052 ms
10,752 KB
testcase_19 AC 1,093 ms
10,752 KB
testcase_20 WA -
testcase_21 AC 1,062 ms
10,880 KB
testcase_22 AC 1,043 ms
10,880 KB
testcase_23 AC 1,072 ms
10,752 KB
testcase_24 AC 1,088 ms
10,752 KB
testcase_25 AC 28 ms
10,880 KB
testcase_26 AC 28 ms
10,880 KB
testcase_27 AC 29 ms
10,880 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):
                if a[y-1][j]:
                    return INF
        return dfs(y+1,0)
    elif y == m:
        for i in range(m):
            for j in range(n):
                if a[i][j]:
                    return INF
        return 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)]

print(dfs(0,0))
0