結果

問題 No.1583 Building Blocks
ユーザー tamatotamato
提出日時 2021-07-02 22:28:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 654 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 87,456 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2023-09-11 22:42:30
合計ジャッジ時間 5,874 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,568 KB
testcase_01 AC 77 ms
71,804 KB
testcase_02 AC 77 ms
71,396 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 92 ms
76,500 KB
testcase_25 AC 76 ms
71,436 KB
testcase_26 AC 89 ms
76,504 KB
testcase_27 AC 88 ms
76,492 KB
testcase_28 AC 94 ms
76,732 KB
testcase_29 AC 87 ms
76,044 KB
testcase_30 AC 84 ms
75,840 KB
testcase_31 WA -
testcase_32 AC 88 ms
76,284 KB
testcase_33 WA -
testcase_34 AC 79 ms
71,460 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 83 ms
75,688 KB
testcase_38 AC 78 ms
71,580 KB
testcase_39 AC 77 ms
71,684 KB
testcase_40 AC 77 ms
71,688 KB
testcase_41 AC 75 ms
71,588 KB
testcase_42 AC 77 ms
71,688 KB
testcase_43 AC 78 ms
71,532 KB
testcase_44 AC 77 ms
71,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from bisect import bisect_left
    input = sys.stdin.readline

    N = int(input())
    WS = []
    for _ in range(N):
        WS.append(tuple(map(int, input().split())))
    WS.sort(key=lambda x: x[0] + x[1])

    LIS = [0]
    for w, s in WS:
        j = bisect_left(LIS, s+1)
        if j == len(LIS):
            LIS.append(LIS[-1] + w)
            for k in range(1, j):
                LIS[k] = min(LIS[k], LIS[k-1] + w)
        else:
            for k in range(1, j+1):
                LIS[k] = min(LIS[k], LIS[k-1] + w)
    print(len(LIS) - 1)


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