結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー roarisroaris
提出日時 2019-12-12 14:18:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,909 ms / 2,500 ms
コード長 1,226 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 289,152 KB
最終ジャッジ日時 2024-06-25 00:32:06
合計ジャッジ時間 27,372 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 49 ms
58,240 KB
testcase_05 AC 60 ms
64,512 KB
testcase_06 AC 59 ms
64,000 KB
testcase_07 AC 75 ms
72,832 KB
testcase_08 AC 105 ms
77,440 KB
testcase_09 AC 88 ms
76,032 KB
testcase_10 AC 81 ms
76,288 KB
testcase_11 AC 1,289 ms
250,752 KB
testcase_12 AC 1,234 ms
251,392 KB
testcase_13 AC 1,135 ms
229,924 KB
testcase_14 AC 236 ms
96,000 KB
testcase_15 AC 861 ms
195,792 KB
testcase_16 AC 1,545 ms
265,472 KB
testcase_17 AC 250 ms
102,400 KB
testcase_18 AC 1,649 ms
271,364 KB
testcase_19 AC 1,399 ms
249,276 KB
testcase_20 AC 355 ms
110,656 KB
testcase_21 AC 172 ms
89,984 KB
testcase_22 AC 250 ms
105,876 KB
testcase_23 AC 81 ms
78,080 KB
testcase_24 AC 870 ms
201,472 KB
testcase_25 AC 1,817 ms
289,152 KB
testcase_26 AC 1,748 ms
286,080 KB
testcase_27 AC 1,696 ms
287,272 KB
testcase_28 AC 1,633 ms
287,504 KB
testcase_29 AC 1,846 ms
288,376 KB
testcase_30 AC 1,909 ms
285,056 KB
testcase_31 AC 1,128 ms
284,544 KB
testcase_32 AC 1,803 ms
285,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
D = list(map(int, input().split()))
D.sort()
dp = [[-1]*(N+1) for _ in range(N+1)]
dp[0][0] = (N, 0)

for i in range(N+1):
    for j in range(N+1):
        if i+j>N:
            break
        
        if i==0 and j==0:
            continue
        
        if i>0:
            idx1, solved1 = dp[i-1][j]
            
        if j>0:
            idx2, solved2 = dp[i][j-1]
            
        mark = bisect_right(D, A[i]+B[j])
        
        if i!=0 and (j==0 or (solved1==solved2 and idx1>idx2) or solved1>solved2):
            if mark==0 or idx1==0:
                dp[i][j] = (idx1, solved1)
            else:
                if mark-1>=idx1:
                    dp[i][j] = (idx1-1, solved1+1)
                else:
                    dp[i][j] = (mark-1, solved1+1)
        else:
            if mark==0 or idx2==0:
                dp[i][j] = (idx2, solved2)
            else:
                if mark-1>=idx2:
                    dp[i][j] = (idx2-1, solved2+1)
                else:
                    dp[i][j] = (mark-1, solved2+1)

ans = 0

for i in range(N+1):
    ans = max(ans, dp[i][N-i][1])

print(ans)
0