結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー tamatotamato
提出日時 2019-12-12 16:45:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,886 ms / 2,500 ms
コード長 1,152 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 287,616 KB
最終ジャッジ日時 2024-06-25 03:39:16
合計ジャッジ時間 19,654 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,760 KB
testcase_01 AC 46 ms
53,760 KB
testcase_02 AC 45 ms
53,760 KB
testcase_03 AC 45 ms
53,632 KB
testcase_04 AC 46 ms
53,888 KB
testcase_05 AC 60 ms
63,104 KB
testcase_06 AC 53 ms
61,184 KB
testcase_07 AC 62 ms
64,512 KB
testcase_08 AC 74 ms
70,912 KB
testcase_09 AC 68 ms
66,944 KB
testcase_10 AC 65 ms
67,072 KB
testcase_11 AC 631 ms
208,896 KB
testcase_12 AC 1,003 ms
284,800 KB
testcase_13 AC 640 ms
204,416 KB
testcase_14 AC 148 ms
85,376 KB
testcase_15 AC 765 ms
210,944 KB
testcase_16 AC 1,514 ms
282,240 KB
testcase_17 AC 228 ms
91,904 KB
testcase_18 AC 1,841 ms
286,720 KB
testcase_19 AC 688 ms
209,152 KB
testcase_20 AC 170 ms
90,752 KB
testcase_21 AC 92 ms
80,512 KB
testcase_22 AC 105 ms
84,864 KB
testcase_23 AC 49 ms
55,040 KB
testcase_24 AC 898 ms
255,616 KB
testcase_25 AC 1,041 ms
286,080 KB
testcase_26 AC 1,371 ms
287,488 KB
testcase_27 AC 1,508 ms
283,828 KB
testcase_28 AC 1,886 ms
287,616 KB
testcase_29 AC 929 ms
285,440 KB
testcase_30 AC 291 ms
158,592 KB
testcase_31 AC 104 ms
131,840 KB
testcase_32 AC 1,425 ms
287,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import 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 = [0] * ((N+1)**2)
    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