結果

問題 No.2178 Payable Magic Items
ユーザー minimumminimum
提出日時 2023-01-06 22:04:27
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 830 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 829,224 KB
最終ジャッジ日時 2024-05-08 13:33:48
合計ジャッジ時間 6,532 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
83,968 KB
testcase_01 AC 43 ms
54,400 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 42 ms
53,760 KB
testcase_04 AC 43 ms
53,504 KB
testcase_05 MLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


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

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))
while dq:
    now, t = dq.popleft()
    if now in num:
        if t == 1:
            if res[num[now]]:
                continue
            res[num[now]] = 1
        else:
            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

print(sum(res))
0