結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー tamatotamato
提出日時 2019-12-12 16:43:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,165 bytes
コンパイル時間 636 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 300,800 KB
最終ジャッジ日時 2024-06-25 03:33:42
合計ジャッジ時間 14,729 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,520 KB
testcase_01 AC 50 ms
53,376 KB
testcase_02 AC 49 ms
53,376 KB
testcase_03 AC 45 ms
53,760 KB
testcase_04 AC 46 ms
54,016 KB
testcase_05 AC 64 ms
65,408 KB
testcase_06 AC 55 ms
61,568 KB
testcase_07 AC 72 ms
68,608 KB
testcase_08 AC 105 ms
80,256 KB
testcase_09 AC 80 ms
71,680 KB
testcase_10 AC 85 ms
74,240 KB
testcase_11 AC 1,891 ms
274,564 KB
testcase_12 TLE -
testcase_13 AC 1,896 ms
286,880 KB
testcase_14 AC 304 ms
115,392 KB
testcase_15 AC 1,949 ms
292,012 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, deque


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
    seen = defaultdict(int)
    while ng - ok > 1:
        st = deque()
        st.append((0, 0))
        seen[0] = mid
        flg = 0
        while st:
            i, j = st.popleft()
            k = i+j+1
            if seen[(i+1) * (N+1) + j] != mid:
                seen[(i+1) * (N+1) + j] = mid
                if A[i+1] + B[j] >= D[mid-k]:
                    if k == mid:
                        flg = 1
                        break
                    st.append((i+1, j))
            if seen[i * (N+1) + j+1] != mid:
                seen[i * (N+1) + j+1] = mid
                if A[i] + B[j+1] >= D[mid-k]:
                    if k == 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