結果

問題 No.733 分身並列コーディング
ユーザー tcltktcltk
提出日時 2021-09-11 05:30:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,221 ms / 1,500 ms
コード長 834 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 91,564 KB
最終ジャッジ日時 2024-06-22 04:38:34
合計ジャッジ時間 22,260 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
87,008 KB
testcase_01 AC 112 ms
86,548 KB
testcase_02 AC 110 ms
86,796 KB
testcase_03 AC 842 ms
90,956 KB
testcase_04 AC 824 ms
91,020 KB
testcase_05 AC 217 ms
91,136 KB
testcase_06 AC 108 ms
87,136 KB
testcase_07 AC 798 ms
91,144 KB
testcase_08 AC 723 ms
91,364 KB
testcase_09 AC 399 ms
90,672 KB
testcase_10 AC 178 ms
90,004 KB
testcase_11 AC 182 ms
90,060 KB
testcase_12 AC 106 ms
86,672 KB
testcase_13 AC 108 ms
86,964 KB
testcase_14 AC 240 ms
90,100 KB
testcase_15 AC 150 ms
90,140 KB
testcase_16 AC 110 ms
86,964 KB
testcase_17 AC 118 ms
87,652 KB
testcase_18 AC 178 ms
89,920 KB
testcase_19 AC 388 ms
90,444 KB
testcase_20 AC 417 ms
90,624 KB
testcase_21 AC 232 ms
90,152 KB
testcase_22 AC 865 ms
91,228 KB
testcase_23 AC 235 ms
90,428 KB
testcase_24 AC 244 ms
90,436 KB
testcase_25 AC 129 ms
89,856 KB
testcase_26 AC 116 ms
86,932 KB
testcase_27 AC 154 ms
89,968 KB
testcase_28 AC 688 ms
91,224 KB
testcase_29 AC 796 ms
90,764 KB
testcase_30 AC 891 ms
91,208 KB
testcase_31 AC 786 ms
90,892 KB
testcase_32 AC 184 ms
90,288 KB
testcase_33 AC 196 ms
90,536 KB
testcase_34 AC 192 ms
90,132 KB
testcase_35 AC 183 ms
90,240 KB
testcase_36 AC 187 ms
90,492 KB
testcase_37 AC 195 ms
90,064 KB
testcase_38 AC 825 ms
91,184 KB
testcase_39 AC 800 ms
91,152 KB
testcase_40 AC 822 ms
91,192 KB
testcase_41 AC 184 ms
90,324 KB
testcase_42 AC 197 ms
90,244 KB
testcase_43 AC 186 ms
90,192 KB
testcase_44 AC 824 ms
91,464 KB
testcase_45 AC 1,221 ms
90,952 KB
testcase_46 AC 824 ms
91,088 KB
testcase_47 AC 822 ms
91,564 KB
testcase_48 AC 872 ms
91,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """5
# 3
# 1
# 5
# 3
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10

T = int(input())
N = int(input())
A = [int(input()) for _ in range(N)]

dp = [INF] * (1<<N)
dp[0] = 0

for mask in range(1<<N):
    if sum(A[i] for i in range(N) if mask & (1<<i)) <= T:
        dp[mask] = 1

    else:
        t = bin(mask).count('1')
        mask1 = mask
        while mask1:
            # 処理を書く
            mask2 = mask ^ mask1
            t = min(t, dp[mask1] + dp[mask2])

            mask1 = (mask1-1) & mask
        
        dp[mask] = t

ans = dp[(1<<N)-1]
print(ans)
0