結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー りあんりあん
提出日時 2019-12-05 23:01:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,052 ms / 2,500 ms
コード長 679 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 77,416 KB
最終ジャッジ日時 2024-06-24 02:36:52
合計ジャッジ時間 12,086 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,840 KB
testcase_01 AC 39 ms
52,756 KB
testcase_02 AC 37 ms
52,556 KB
testcase_03 AC 38 ms
52,552 KB
testcase_04 AC 43 ms
60,424 KB
testcase_05 AC 56 ms
63,588 KB
testcase_06 AC 49 ms
61,800 KB
testcase_07 AC 56 ms
66,020 KB
testcase_08 AC 68 ms
72,384 KB
testcase_09 AC 61 ms
68,964 KB
testcase_10 AC 54 ms
65,656 KB
testcase_11 AC 719 ms
76,820 KB
testcase_12 AC 605 ms
76,788 KB
testcase_13 AC 648 ms
77,132 KB
testcase_14 AC 131 ms
76,536 KB
testcase_15 AC 351 ms
76,596 KB
testcase_16 AC 620 ms
76,836 KB
testcase_17 AC 127 ms
76,512 KB
testcase_18 AC 826 ms
76,772 KB
testcase_19 AC 354 ms
76,660 KB
testcase_20 AC 125 ms
76,380 KB
testcase_21 AC 75 ms
74,576 KB
testcase_22 AC 89 ms
77,000 KB
testcase_23 AC 45 ms
60,236 KB
testcase_24 AC 445 ms
76,280 KB
testcase_25 AC 1,052 ms
76,840 KB
testcase_26 AC 827 ms
77,416 KB
testcase_27 AC 741 ms
76,936 KB
testcase_28 AC 815 ms
76,600 KB
testcase_29 AC 480 ms
76,892 KB
testcase_30 AC 208 ms
76,744 KB
testcase_31 AC 72 ms
76,232 KB
testcase_32 AC 720 ms
76,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
d = list(map(int, input().split()))

d.sort()

ok = 0
ng = n + 1
while ng - ok > 1:
    m = (ok + ng) // 2
    f = [ True ]
    for i in range(1, m + 1):
        nf = [ False ] * (i + 1)
        for j in range(i):
            if not f[j]:
                continue
            if a[j] + b[i - j] >= d[m - i]:
                nf[j] = True
            if a[j + 1] + b[i - j - 1] >= d[m - i]:
                nf[j + 1] = True

        f = nf

    ff = False
    for i in f:
        if i:
            ff = True
    if ff:
        ok = m
    else:
        ng = m

print(ok)
0