結果

問題 No.1782 ManyCoins
ユーザー tamatotamato
提出日時 2021-12-12 19:03:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,190 ms / 2,000 ms
コード長 987 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 113,536 KB
最終ジャッジ日時 2024-07-21 06:39:30
合計ジャッジ時間 13,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,032 KB
testcase_01 AC 54 ms
65,756 KB
testcase_02 AC 42 ms
54,432 KB
testcase_03 AC 41 ms
54,672 KB
testcase_04 AC 44 ms
54,500 KB
testcase_05 AC 43 ms
54,676 KB
testcase_06 AC 43 ms
54,444 KB
testcase_07 AC 43 ms
54,560 KB
testcase_08 AC 42 ms
54,376 KB
testcase_09 AC 43 ms
55,460 KB
testcase_10 AC 42 ms
54,864 KB
testcase_11 AC 43 ms
54,492 KB
testcase_12 AC 43 ms
54,192 KB
testcase_13 AC 177 ms
83,744 KB
testcase_14 AC 764 ms
113,152 KB
testcase_15 AC 342 ms
101,248 KB
testcase_16 AC 482 ms
106,880 KB
testcase_17 AC 732 ms
111,360 KB
testcase_18 AC 412 ms
108,160 KB
testcase_19 AC 50 ms
60,928 KB
testcase_20 AC 728 ms
106,240 KB
testcase_21 AC 826 ms
113,536 KB
testcase_22 AC 1,190 ms
110,080 KB
testcase_23 AC 1,034 ms
109,184 KB
testcase_24 AC 64 ms
68,736 KB
testcase_25 AC 675 ms
110,464 KB
testcase_26 AC 313 ms
97,792 KB
testcase_27 AC 1,170 ms
113,152 KB
testcase_28 AC 75 ms
68,736 KB
testcase_29 AC 129 ms
83,968 KB
testcase_30 AC 136 ms
92,288 KB
testcase_31 AC 175 ms
92,288 KB
testcase_32 AC 186 ms
92,544 KB
testcase_33 AC 188 ms
92,288 KB
testcase_34 AC 202 ms
92,416 KB
testcase_35 AC 222 ms
91,904 KB
testcase_36 AC 152 ms
84,608 KB
testcase_37 AC 99 ms
80,768 KB
testcase_38 AC 79 ms
76,544 KB
testcase_39 AC 62 ms
68,224 KB
testcase_40 AC 80 ms
74,752 KB
testcase_41 AC 87 ms
73,216 KB
testcase_42 AC 67 ms
73,088 KB
testcase_43 AC 76 ms
66,816 KB
testcase_44 AC 80 ms
74,496 KB
testcase_45 AC 81 ms
75,264 KB
testcase_46 AC 90 ms
77,440 KB
testcase_47 AC 91 ms
77,184 KB
testcase_48 AC 42 ms
53,760 KB
testcase_49 AC 42 ms
53,760 KB
testcase_50 AC 52 ms
67,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9
inf = 10 ** 18


def main():
    import sys
    from collections import deque
    input = sys.stdin.readline

    N, L = map(int, input().split())
    W = list(map(int, input().split()))

    W.sort()
    w_max = W[-1]

    seen = [inf] * w_max
    que = deque([(0, 0)])
    seen[0] = 0
    while que:
        v, d = que.popleft()
        if d != seen[v]:
            continue
        for w in W[:-1]:
            u = v + w
            if u < w_max:
                if d < seen[u]:
                    seen[u] = d
                    que.appendleft((u, d))
            else:
                u -= w_max
                if d + 1 < seen[u]:
                    seen[u] = d + 1
                    que.append((u, d + 1))

    ans = 0
    for i in range(w_max):
        add = L // w_max
        if i:
            if L % w_max >= i:
                add += 1
        add -= seen[i]
        ans += max(0, add)
    print(ans)


if __name__ == '__main__':
    main()
0