結果
問題 | No.50 おもちゃ箱 |
ユーザー | Mao-beta |
提出日時 | 2024-03-02 02:09:49 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,109 bytes |
コンパイル時間 | 310 ms |
コンパイル使用メモリ | 82,288 KB |
実行使用メモリ | 98,152 KB |
最終ジャッジ日時 | 2024-09-29 15:48:07 |
合計ジャッジ時間 | 11,086 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 47 ms
55,824 KB |
testcase_04 | AC | 46 ms
57,088 KB |
testcase_05 | AC | 47 ms
56,424 KB |
testcase_06 | AC | 176 ms
76,720 KB |
testcase_07 | AC | 47 ms
56,020 KB |
testcase_08 | AC | 46 ms
56,768 KB |
testcase_09 | AC | 47 ms
55,796 KB |
testcase_10 | AC | 46 ms
56,728 KB |
testcase_11 | AC | 55 ms
63,668 KB |
testcase_12 | AC | 48 ms
56,204 KB |
testcase_13 | AC | 47 ms
56,836 KB |
testcase_14 | AC | 77 ms
76,656 KB |
testcase_15 | AC | 47 ms
56,792 KB |
testcase_16 | WA | - |
testcase_17 | AC | 197 ms
77,364 KB |
testcase_18 | AC | 83 ms
76,252 KB |
testcase_19 | WA | - |
testcase_20 | AC | 62 ms
70,100 KB |
testcase_21 | AC | 233 ms
77,400 KB |
testcase_22 | AC | 1,363 ms
78,536 KB |
testcase_23 | AC | 48 ms
57,208 KB |
testcase_24 | AC | 46 ms
57,340 KB |
testcase_25 | AC | 46 ms
57,020 KB |
testcase_26 | AC | 45 ms
56,360 KB |
testcase_27 | AC | 46 ms
56,628 KB |
testcase_28 | TLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
ソースコード
import sys import math import bisect from heapq import heapify, heappop, heappush from collections import deque, defaultdict, Counter from functools import lru_cache from itertools import accumulate, combinations, permutations, product sys.setrecursionlimit(1000000) MOD = 10 ** 9 + 7 MOD99 = 998244353 input = lambda: sys.stdin.readline().strip() NI = lambda: int(input()) NMI = lambda: map(int, input().split()) NLI = lambda: list(NMI()) SI = lambda: input() SMI = lambda: input().split() SLI = lambda: list(SMI()) EI = lambda m: [NLI() for _ in range(m)] def main(): N = NI() A = NLI() M = NI() B = NLI() B.sort(reverse=True) def dfs(case, bi): if case == (1<<N)-1: print(bi+1) exit() if bi >= M: return for i in range(N): if (case >> i) & 1: continue if A[i] > B[bi]: continue B[bi] -= A[i] dfs(case | (1<<i), bi) B[bi] += A[i] dfs(case, bi+1) dfs(0, 0) print(-1) if __name__ == "__main__": main()