結果

問題 No.861 ケーキカット
ユーザー mkawa2mkawa2
提出日時 2021-02-26 16:26:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,365 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 339,848 KB
最終ジャッジ日時 2024-04-10 07:21:14
合計ジャッジ時間 20,398 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 756 ms
339,848 KB
testcase_01 AC 761 ms
339,560 KB
testcase_02 AC 761 ms
339,628 KB
testcase_03 AC 349 ms
317,356 KB
testcase_04 AC 776 ms
339,424 KB
testcase_05 AC 754 ms
339,544 KB
testcase_06 WA -
testcase_07 AC 768 ms
339,772 KB
testcase_08 AC 791 ms
339,164 KB
testcase_09 AC 766 ms
339,232 KB
testcase_10 AC 753 ms
339,604 KB
testcase_11 AC 769 ms
339,424 KB
testcase_12 AC 772 ms
339,304 KB
testcase_13 AC 769 ms
339,552 KB
testcase_14 AC 784 ms
339,492 KB
testcase_15 AC 757 ms
339,624 KB
testcase_16 AC 771 ms
339,836 KB
testcase_17 AC 767 ms
339,504 KB
testcase_18 AC 755 ms
339,504 KB
testcase_19 AC 762 ms
339,292 KB
testcase_20 AC 766 ms
339,564 KB
testcase_21 AC 789 ms
339,584 KB
testcase_22 AC 759 ms
339,484 KB
testcase_23 AC 782 ms
339,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def FI(): return float(sys.stdin.buffer.readline())
def MI(): return map(int, sys.stdin.buffer.readline().split())
def MF(): return map(float, sys.stdin.buffer.readline().split())
def MI1(): return map(int1, sys.stdin.buffer.readline().split())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
inf = 10**16
# md = 998244353
md = 10**9+7

nei = [0]*25
for i in range(5):
    for j in range(5):
        cur = 0
        if i: cur |= 1 << (i-1)*5+j
        if j: cur |= 1 << i*5+j-1
        if i < 4: cur |= 1 << (i+1)*5+j
        if j < 4: cur |= 1 << i*5+j+1
        nei[i*5+j] = cur

cc = []
for _ in range(5): cc += LI()

def ok(bit):
    stack = []
    for i in range(25):
        if bit >> i & 1 == 0:
            stack.append(i)
            break

    while stack:
        ij = stack.pop()
        i, j = ij//5, ij%5
        if i:
            nij = ij-5
            if bit >> nij & 1 == 0:
                bit |= 1 << nij
                stack.append(nij)
        if j:
            nij = ij-1
            if bit >> nij & 1 == 0:
                bit |= 1 << nij
                stack.append(nij)
        if i < 4:
            nij = ij+5
            if bit >> nij & 1 == 0:
                bit |= 1 << nij
                stack.append(nij)
        if j < 4:
            nij = ij+1
            if bit >> nij & 1 == 0:
                bit |= 1 << nij
                stack.append(nij)

    return bit+1 == 1 << 25

fin = [False]*(1 << 25)
fin[1] = True
stack = [(1, cc[0])]
tot = sum(cc)
ans = inf
while stack:
    bit, s = stack.pop()
    ans = min(ans, abs(2*s-tot))
    if 2*s >= tot: continue
    for i in range(1, 25):
        if bit >> i & 1: continue
        nbit = bit | 1 << i
        if fin[nbit]: continue
        fin[nbit] = True
        if bit & nei[i] and ok(nbit):
            stack.append((nbit, s+cc[i]))

print(ans)
0