結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー tamatotamato
提出日時 2019-12-12 15:39:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,199 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 358,136 KB
最終ジャッジ日時 2024-06-25 02:10:21
合計ジャッジ時間 6,087 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
61,996 KB
testcase_01 AC 39 ms
55,196 KB
testcase_02 AC 40 ms
54,432 KB
testcase_03 AC 41 ms
54,624 KB
testcase_04 AC 41 ms
54,640 KB
testcase_05 AC 43 ms
54,660 KB
testcase_06 AC 42 ms
55,344 KB
testcase_07 AC 47 ms
56,440 KB
testcase_08 AC 60 ms
68,792 KB
testcase_09 AC 54 ms
65,876 KB
testcase_10 AC 55 ms
65,956 KB
testcase_11 AC 555 ms
181,576 KB
testcase_12 AC 79 ms
78,128 KB
testcase_13 AC 353 ms
150,248 KB
testcase_14 AC 65 ms
73,820 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def main():
    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
    mid = (ok + ng) // 2
    while ng - ok > 1:
        seen = defaultdict(int)
        st = [(0, 0)]
        seen[(0, 0)] = 1
        flg = 0
        while st:
            i, j = st.pop()
            if i+1 <= N:
                if seen[(i+1, j)] == 0:
                    seen[(i+1, j)] = 1
                    if A[i+1] + B[j] >= D[mid-(i+j+1)]:
                        if i+j+1 == mid:
                            flg = 1
                            break
                        st.append((i+1, j))
            if j+1 <= N:
                if seen[(i, j+1)] == 0:
                    seen[(i, j+1)] = 1
                    if A[i] + B[j+1] >= D[mid-(i+j+1)]:
                        if i+j+1 == mid:
                            flg = 1
                            break
                        st.append((i, j+1))
        if flg:
            ok = mid
        else:
            ng = mid
        mid = (ok+ng)//2

    print(ok)


if __name__ == '__main__':
    main()
0