結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー tamatotamato
提出日時 2019-12-12 15:43:17
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,226 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 387,084 KB
最終ジャッジ日時 2024-06-25 02:14:39
合計ジャッジ時間 7,508 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
61,332 KB
testcase_01 AC 40 ms
54,852 KB
testcase_02 AC 40 ms
55,244 KB
testcase_03 AC 41 ms
54,988 KB
testcase_04 AC 42 ms
54,260 KB
testcase_05 AC 43 ms
54,872 KB
testcase_06 AC 42 ms
54,588 KB
testcase_07 AC 43 ms
55,668 KB
testcase_08 AC 56 ms
67,004 KB
testcase_09 AC 50 ms
64,720 KB
testcase_10 AC 51 ms
64,764 KB
testcase_11 AC 299 ms
188,368 KB
testcase_12 AC 70 ms
76,652 KB
testcase_13 AC 204 ms
163,952 KB
testcase_14 AC 60 ms
72,032 KB
testcase_15 AC 1,329 ms
324,760 KB
testcase_16 TLE -
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] = 1
        flg = 0
        while st:
            i, j = st.pop()
            if i+1 <= N:
                if seen[(i+1) * (N+1) + j] == 0:
                    seen[(i+1) * (N+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 * (N+1) + j+1] == 0:
                    seen[i * (N+1) + 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