結果

問題 No.2178 Payable Magic Items
ユーザー minimumminimum
提出日時 2023-01-06 22:04:27
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 830 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 81,628 KB
実行使用メモリ 1,658,656 KB
最終ジャッジ日時 2024-12-14 17:58:41
合計ジャッジ時間 54,555 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
85,388 KB
testcase_01 MLE -
testcase_02 AC 44 ms
61,384 KB
testcase_03 MLE -
testcase_04 AC 44 ms
61,532 KB
testcase_05 MLE -
testcase_06 TLE -
testcase_07 MLE -
testcase_08 TLE -
testcase_09 MLE -
testcase_10 TLE -
testcase_11 MLE -
testcase_12 AC 307 ms
112,008 KB
testcase_13 MLE -
testcase_14 AC 246 ms
111,920 KB
testcase_15 MLE -
testcase_16 AC 255 ms
104,900 KB
testcase_17 TLE -
testcase_18 AC 130 ms
78,580 KB
testcase_19 AC 104 ms
85,392 KB
testcase_20 AC 53 ms
63,152 KB
testcase_21 AC 69 ms
71,140 KB
testcase_22 AC 69 ms
72,100 KB
testcase_23 AC 56 ms
65,552 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 MLE -
権限があれば一括ダウンロードができます

ソースコード

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