結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー tamatotamato
提出日時 2019-12-12 15:33:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,143 ms / 2,500 ms
コード長 1,199 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 468,236 KB
最終ジャッジ日時 2024-06-25 02:03:16
合計ジャッジ時間 18,619 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,640 KB
testcase_01 AC 38 ms
53,648 KB
testcase_02 AC 40 ms
54,092 KB
testcase_03 AC 38 ms
53,208 KB
testcase_04 AC 43 ms
57,764 KB
testcase_05 AC 44 ms
58,772 KB
testcase_06 AC 44 ms
58,404 KB
testcase_07 AC 50 ms
60,684 KB
testcase_08 AC 58 ms
71,600 KB
testcase_09 AC 48 ms
63,484 KB
testcase_10 AC 54 ms
67,036 KB
testcase_11 AC 633 ms
326,452 KB
testcase_12 AC 572 ms
314,104 KB
testcase_13 AC 570 ms
341,500 KB
testcase_14 AC 114 ms
108,196 KB
testcase_15 AC 795 ms
313,200 KB
testcase_16 AC 1,503 ms
366,648 KB
testcase_17 AC 144 ms
133,896 KB
testcase_18 AC 795 ms
443,236 KB
testcase_19 AC 1,039 ms
316,952 KB
testcase_20 AC 251 ms
168,964 KB
testcase_21 AC 98 ms
89,408 KB
testcase_22 AC 181 ms
152,352 KB
testcase_23 AC 50 ms
70,728 KB
testcase_24 AC 459 ms
315,992 KB
testcase_25 AC 970 ms
462,032 KB
testcase_26 AC 846 ms
468,236 KB
testcase_27 AC 2,143 ms
359,008 KB
testcase_28 AC 852 ms
468,236 KB
testcase_29 AC 1,381 ms
384,540 KB
testcase_30 AC 842 ms
410,048 KB
testcase_31 AC 741 ms
412,324 KB
testcase_32 AC 1,799 ms
394,088 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:
        d = D[:mid]
        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[-(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[-(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