結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,288 KB
testcase_01 AC 37 ms
52,404 KB
testcase_02 AC 38 ms
53,556 KB
testcase_03 AC 38 ms
52,200 KB
testcase_04 AC 40 ms
58,312 KB
testcase_05 AC 45 ms
59,820 KB
testcase_06 AC 44 ms
61,020 KB
testcase_07 AC 47 ms
62,440 KB
testcase_08 AC 62 ms
73,456 KB
testcase_09 AC 50 ms
64,692 KB
testcase_10 AC 55 ms
68,536 KB
testcase_11 AC 747 ms
414,768 KB
testcase_12 AC 706 ms
428,936 KB
testcase_13 AC 687 ms
389,828 KB
testcase_14 AC 119 ms
106,720 KB
testcase_15 AC 984 ms
341,208 KB
testcase_16 AC 1,973 ms
472,836 KB
testcase_17 AC 149 ms
139,952 KB
testcase_18 MLE -
testcase_19 AC 1,313 ms
430,016 KB
testcase_20 AC 291 ms
187,376 KB
testcase_21 AC 108 ms
99,192 KB
testcase_22 AC 202 ms
152,268 KB
testcase_23 AC 54 ms
72,604 KB
testcase_24 AC 577 ms
393,980 KB
testcase_25 MLE -
testcase_26 MLE -
testcase_27 TLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 AC 1,012 ms
500,196 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+1 <= N:
                if seen[i+1][j] == 0:
                    seen[i + 1][j] = 1
                    if grid[i+1][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 grid[i][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