結果

問題 No.385 カップ麺生活
ユーザー roarisroaris
提出日時 2019-12-11 20:54:58
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,133 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 75,208 KB
最終ジャッジ日時 2024-06-24 08:02:53
合計ジャッジ時間 3,806 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,996 KB
testcase_01 RE -
testcase_02 AC 40 ms
54,428 KB
testcase_03 AC 41 ms
55,576 KB
testcase_04 AC 61 ms
68,572 KB
testcase_05 AC 41 ms
54,472 KB
testcase_06 AC 64 ms
69,884 KB
testcase_07 AC 62 ms
70,396 KB
testcase_08 AC 61 ms
69,068 KB
testcase_09 RE -
testcase_10 AC 73 ms
75,208 KB
testcase_11 AC 42 ms
54,504 KB
testcase_12 AC 64 ms
70,468 KB
testcase_13 AC 72 ms
74,908 KB
testcase_14 AC 70 ms
73,488 KB
testcase_15 AC 68 ms
71,572 KB
testcase_16 AC 44 ms
59,892 KB
testcase_17 AC 74 ms
74,580 KB
testcase_18 AC 65 ms
71,216 KB
testcase_19 AC 61 ms
68,772 KB
testcase_20 AC 69 ms
72,272 KB
testcase_21 AC 69 ms
72,928 KB
testcase_22 AC 65 ms
71,492 KB
testcase_23 AC 75 ms
74,480 KB
testcase_24 AC 69 ms
73,280 KB
testcase_25 AC 43 ms
54,896 KB
testcase_26 AC 49 ms
63,164 KB
testcase_27 AC 75 ms
74,824 KB
testcase_28 AC 75 ms
71,932 KB
testcase_29 AC 67 ms
68,920 KB
testcase_30 AC 79 ms
74,396 KB
testcase_31 AC 51 ms
60,992 KB
testcase_32 AC 51 ms
62,116 KB
testcase_33 AC 72 ms
71,804 KB
testcase_34 AC 50 ms
63,316 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())

if M==1:
    if min(C)==1:
        print(1)
    else:
        print(0)
    exit()
    
N = int(input())
C = list(map(int, input().split()))
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