結果
問題 | No.783 門松計画 |
ユーザー | shotoyoo |
提出日時 | 2021-07-22 15:07:36 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,154 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 82,244 KB |
実行使用メモリ | 188,896 KB |
最終ジャッジ日時 | 2024-07-17 14:46:55 |
合計ジャッジ時間 | 6,380 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
60,980 KB |
testcase_01 | AC | 38 ms
52,472 KB |
testcase_02 | AC | 41 ms
57,772 KB |
testcase_03 | AC | 36 ms
52,188 KB |
testcase_04 | AC | 38 ms
52,664 KB |
testcase_05 | AC | 37 ms
53,944 KB |
testcase_06 | AC | 37 ms
53,060 KB |
testcase_07 | AC | 36 ms
53,348 KB |
testcase_08 | AC | 37 ms
52,616 KB |
testcase_09 | AC | 37 ms
52,880 KB |
testcase_10 | AC | 309 ms
90,508 KB |
testcase_11 | AC | 1,910 ms
100,160 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
import sys input = lambda : sys.stdin.readline().rstrip() sys.setrecursionlimit(2*10**5+10) write = lambda x: sys.stdout.write(x+"\n") debug = lambda x: sys.stderr.write(x+"\n") writef = lambda x: print("{:.12f}".format(x)) # list 多重リスト生成 def dlist(*l, fill=None): if len(l)==1: return [fill]*l[0] ll = l[1:] return [dlist(*ll, fill=fill) for _ in range(l[0])] n,c = list(map(int, input().split())) l = list(map(int, input().split())) w = list(map(int, input().split())) index = list(range(n)) index.sort(key=lambda i: w[i]) l = [l[i] for i in index] w = [w[i] for i in index] dp = {(-1,-1,0): 0} ans = 0 while dp: ndp = {} for (i,j,k),val in dp.items(): for ii in range(n): ll = l[ii] ww = w[ii] if ww+k>c: break if ll==i or ll==j: continue if i!=-1 and j!=-1: if (j-i)*(ll-j)>0: continue ans = max(ans, val+ll) nk = (j,ll,ww+k) ndp.setdefault(nk, 0) ndp[nk] = max(ndp[nk], val+ll) dp = ndp # print(dp) print(ans)