結果

問題 No.2178 Payable Magic Items
ユーザー minimumminimum
提出日時 2023-01-06 22:08:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 806 ms / 4,000 ms
コード長 832 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 178,984 KB
最終ジャッジ日時 2024-05-08 13:33:59
合計ジャッジ時間 8,944 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,544 KB
testcase_01 AC 41 ms
54,152 KB
testcase_02 AC 42 ms
55,292 KB
testcase_03 AC 41 ms
54,248 KB
testcase_04 AC 42 ms
53,820 KB
testcase_05 AC 573 ms
152,520 KB
testcase_06 AC 472 ms
155,772 KB
testcase_07 AC 42 ms
54,120 KB
testcase_08 AC 462 ms
152,220 KB
testcase_09 AC 159 ms
84,388 KB
testcase_10 AC 65 ms
68,864 KB
testcase_11 AC 752 ms
178,984 KB
testcase_12 AC 247 ms
103,448 KB
testcase_13 AC 806 ms
176,164 KB
testcase_14 AC 247 ms
103,656 KB
testcase_15 AC 247 ms
103,552 KB
testcase_16 AC 249 ms
103,420 KB
testcase_17 AC 736 ms
170,612 KB
testcase_18 AC 95 ms
77,460 KB
testcase_19 AC 105 ms
84,764 KB
testcase_20 AC 53 ms
63,060 KB
testcase_21 AC 66 ms
71,884 KB
testcase_22 AC 68 ms
72,140 KB
testcase_23 AC 54 ms
65,148 KB
testcase_24 AC 786 ms
167,776 KB
testcase_25 AC 670 ms
162,572 KB
testcase_26 AC 118 ms
89,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


N, K = map(int, input().split())
S = [input() for _ in range(N)]
num = dict()

for i in range(N):
    n = 0
    for j in range(K):
        n *= 5
        n += 4 - int(S[i][j])
    num[n] = i

if 0 in num:
    print(N - 1)
    exit()

dq = deque()
dq.append((0, 0))
done = [-1] * (5 ** K)

while dq:
    now, t = dq.popleft()
    if done[now] >= t:
        continue
    done[now] = t
    if now in num:
        t = 1
    a = []
    for i in range(K):
        a.append(now % 5)
        now //= 5
    a.reverse()
    for i in range(K):
        if a[i] == 4:
            continue
        a[i] += 1
        nxt = 0
        for j in range(K):
            nxt *= 5
            nxt += a[j]
        dq.append((nxt, t))
        a[i] -= 1


ans = 0
for n in num:
    if done[n] == 1:
        ans += 1
print(ans)
0