結果

問題 No.385 カップ麺生活
ユーザー roarisroaris
提出日時 2019-12-11 20:57:32
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,133 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,008 KB
最終ジャッジ日時 2024-10-04 23:02:06
合計ジャッジ時間 2,816 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,144 KB
testcase_01 RE -
testcase_02 AC 35 ms
54,272 KB
testcase_03 AC 36 ms
54,144 KB
testcase_04 AC 49 ms
67,712 KB
testcase_05 AC 37 ms
53,760 KB
testcase_06 AC 54 ms
69,632 KB
testcase_07 AC 56 ms
68,352 KB
testcase_08 AC 52 ms
67,456 KB
testcase_09 AC 34 ms
53,376 KB
testcase_10 AC 62 ms
75,008 KB
testcase_11 AC 36 ms
54,272 KB
testcase_12 AC 54 ms
69,248 KB
testcase_13 AC 63 ms
73,728 KB
testcase_14 AC 60 ms
73,216 KB
testcase_15 AC 57 ms
71,168 KB
testcase_16 AC 38 ms
59,520 KB
testcase_17 AC 73 ms
74,368 KB
testcase_18 AC 56 ms
69,376 KB
testcase_19 AC 53 ms
68,224 KB
testcase_20 AC 59 ms
71,424 KB
testcase_21 AC 61 ms
73,088 KB
testcase_22 AC 56 ms
71,040 KB
testcase_23 AC 63 ms
74,368 KB
testcase_24 AC 58 ms
72,320 KB
testcase_25 AC 36 ms
54,016 KB
testcase_26 AC 39 ms
61,056 KB
testcase_27 AC 62 ms
74,368 KB
testcase_28 AC 57 ms
71,040 KB
testcase_29 AC 52 ms
68,352 KB
testcase_30 AC 61 ms
74,240 KB
testcase_31 AC 40 ms
60,288 KB
testcase_32 AC 40 ms
60,928 KB
testcase_33 AC 56 ms
70,912 KB
testcase_34 AC 43 ms
62,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque

def era(n):
    is_prime = [True]*(n+1)
    is_prime[0] = False
    is_prime[1] = False
    
    for i in range(2, int(n**0.5)+1):
        if not is_prime[i]:
            continue
        
        for j in range(2*i, n+1, i):
            is_prime[j] = False
    
    return [i for i in range(n+1) if is_prime[i]]
    
M = int(input())
N = int(input())
C = list(map(int, input().split()))

if M==1:
    if min(C)==1:
        print(1)
    else:
        print(0)
    exit()
    
ins = [0]*(M+1)
outs = defaultdict(list)

for i in range(M, -1, -1):
    if i!=M and ins[i]==0:
        continue
    
    for Ci in C:
        if i-Ci>=0:
            ins[i-Ci] += 1
            outs[i].append(i-Ci)

q = deque([M])
dp = [-10**18]*(M+1)
dp[M] = 0

while q:
    v = q.popleft()
    
    for nv in outs[v]:
        dp[nv] = max(dp[nv], dp[v]+1)
        ins[nv] -= 1
        
        if ins[nv]==0:
            q.append(nv)

ans = 0

for pi in era(M-1):
    if dp[pi]==-10**18:
        continue
    
    ans += dp[pi]

minC = min(C)
ans += max(dp[i] for i in range(minC) if dp[i]!=-10**18)

print(ans)
0