結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー tamatotamato
提出日時 2019-12-12 15:29:05
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,196 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 581,760 KB
最終ジャッジ日時 2024-06-25 01:58:20
合計ジャッジ時間 23,000 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 36 ms
52,480 KB
testcase_04 AC 40 ms
57,472 KB
testcase_05 AC 44 ms
60,288 KB
testcase_06 AC 44 ms
59,520 KB
testcase_07 AC 46 ms
61,696 KB
testcase_08 AC 62 ms
74,112 KB
testcase_09 AC 54 ms
66,048 KB
testcase_10 AC 55 ms
67,200 KB
testcase_11 AC 746 ms
414,848 KB
testcase_12 AC 694 ms
428,928 KB
testcase_13 AC 660 ms
389,632 KB
testcase_14 AC 122 ms
106,948 KB
testcase_15 AC 979 ms
341,248 KB
testcase_16 AC 1,973 ms
473,088 KB
testcase_17 AC 153 ms
140,032 KB
testcase_18 MLE -
testcase_19 AC 1,279 ms
429,740 KB
testcase_20 AC 287 ms
187,392 KB
testcase_21 AC 110 ms
98,816 KB
testcase_22 AC 200 ms
152,500 KB
testcase_23 AC 53 ms
72,576 KB
testcase_24 AC 553 ms
393,984 KB
testcase_25 MLE -
testcase_26 MLE -
testcase_27 TLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 AC 1,011 ms
500,736 KB
testcase_31 MLE -
testcase_32 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))
    D = list(map(int, input().split()))

    grid = [[0 for _ in range(N+1)] for _ in range(N+1)]
    for i in range(N+1):
        for j in range(N+1):
            grid[i][j] = A[i] + B[j]
    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+j == mid:
                flg = 1
                break
            if i+1 <= N:
                if seen[i+1][j] == 0:
                    seen[i + 1][j] = 1
                    if grid[i+1][j] >= d[-(i+j+1)]:
                        st.append((i+1, j))
            if j+1 <= N:
                if seen[i][j+1] == 0:
                    seen[i][j + 1] = 1
                    if grid[i][j+1] >= d[-(i+j+1)]:
                        st.append((i, j+1))
        if flg:
            ok = mid
        else:
            ng = mid
        mid = (ok+ng)//2

    print(ok)


if __name__ == '__main__':
    main()
0