結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー titiatitia
提出日時 2019-12-12 11:46:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 728 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 147,708 KB
最終ジャッジ日時 2024-06-24 21:38:01
合計ジャッジ時間 8,426 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 38 ms
52,608 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 263 ms
110,976 KB
testcase_16 AC 419 ms
140,544 KB
testcase_17 AC 100 ms
84,608 KB
testcase_18 AC 410 ms
135,880 KB
testcase_19 AC 351 ms
127,196 KB
testcase_20 AC 132 ms
86,784 KB
testcase_21 AC 96 ms
81,024 KB
testcase_22 AC 114 ms
85,376 KB
testcase_23 AC 46 ms
61,568 KB
testcase_24 AC 250 ms
113,176 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 452 ms
147,072 KB
testcase_28 AC 402 ms
135,504 KB
testcase_29 WA -
testcase_30 AC 368 ms
147,072 KB
testcase_31 AC 237 ms
135,424 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
D=sorted(map(int,input().split()),reverse=True)

DP=[[-1]*(N+1) for i in range(N+1)]
DP[0][0]=0

for s in range(N):
    for i in range(s+1):
        now=DP[i][s-i]
        if now==-1:
            continue

        next1=A[i+1]+B[s-i]

        for j in range(now,N):
            if next1>=D[j]:
                DP[i+1][s-i]=max(j+1,DP[i+1][s-i])
                break

        next2=A[i]+B[s-i+1]

        for j in range(now,N):
            if next2>=D[j]:
                DP[i][s-i+1]=max(j+1,DP[i][s-i+1])
                break

ANS=0
for i in range(N+1):
    for j in range(N+1):
        if DP[i][j]!=-1:
            ANS=max(ANS,i+j)
print(ANS)
0