結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー tamatotamato
提出日時 2019-12-12 15:36:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,134 ms / 2,500 ms
コード長 1,185 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 468,728 KB
最終ジャッジ日時 2024-06-25 02:07:11
合計ジャッジ時間 18,279 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,352 KB
testcase_01 AC 39 ms
52,936 KB
testcase_02 AC 36 ms
53,196 KB
testcase_03 AC 37 ms
52,948 KB
testcase_04 AC 40 ms
57,984 KB
testcase_05 AC 41 ms
60,232 KB
testcase_06 AC 41 ms
58,660 KB
testcase_07 AC 44 ms
61,028 KB
testcase_08 AC 58 ms
70,964 KB
testcase_09 AC 46 ms
62,816 KB
testcase_10 AC 55 ms
66,928 KB
testcase_11 AC 633 ms
326,724 KB
testcase_12 AC 557 ms
314,592 KB
testcase_13 AC 568 ms
341,156 KB
testcase_14 AC 115 ms
108,000 KB
testcase_15 AC 786 ms
313,316 KB
testcase_16 AC 1,501 ms
367,140 KB
testcase_17 AC 140 ms
133,936 KB
testcase_18 AC 777 ms
443,600 KB
testcase_19 AC 1,025 ms
317,556 KB
testcase_20 AC 247 ms
169,152 KB
testcase_21 AC 96 ms
89,412 KB
testcase_22 AC 179 ms
152,344 KB
testcase_23 AC 48 ms
69,344 KB
testcase_24 AC 447 ms
316,304 KB
testcase_25 AC 983 ms
462,524 KB
testcase_26 AC 856 ms
468,172 KB
testcase_27 AC 2,134 ms
358,376 KB
testcase_28 AC 850 ms
468,728 KB
testcase_29 AC 1,362 ms
384,036 KB
testcase_30 AC 813 ms
409,820 KB
testcase_31 AC 721 ms
412,220 KB
testcase_32 AC 1,789 ms
394,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = [[0 for _ in range(N+1)] for _ in range(N+1)]
        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