結果

問題 No.1583 Building Blocks
ユーザー tamatotamato
提出日時 2021-07-02 22:24:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 63,792 KB
最終ジャッジ日時 2024-06-29 12:09:53
合計ジャッジ時間 3,471 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,772 KB
testcase_01 AC 39 ms
52,468 KB
testcase_02 AC 38 ms
53,204 KB
testcase_03 WA -
testcase_04 AC 40 ms
53,272 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 39 ms
53,180 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 42 ms
58,420 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 46 ms
62,088 KB
testcase_25 AC 38 ms
52,204 KB
testcase_26 AC 46 ms
61,368 KB
testcase_27 AC 45 ms
60,760 KB
testcase_28 AC 47 ms
61,860 KB
testcase_29 AC 42 ms
58,464 KB
testcase_30 AC 40 ms
54,088 KB
testcase_31 AC 48 ms
62,812 KB
testcase_32 AC 45 ms
62,024 KB
testcase_33 AC 50 ms
63,236 KB
testcase_34 AC 38 ms
53,148 KB
testcase_35 AC 47 ms
61,180 KB
testcase_36 AC 50 ms
61,860 KB
testcase_37 AC 40 ms
54,280 KB
testcase_38 AC 38 ms
53,228 KB
testcase_39 AC 39 ms
53,032 KB
testcase_40 AC 38 ms
53,688 KB
testcase_41 AC 38 ms
53,140 KB
testcase_42 AC 39 ms
53,784 KB
testcase_43 AC 38 ms
52,780 KB
testcase_44 AC 39 ms
53,016 KB
testcase_45 AC 39 ms
53,496 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)
        else:
            LIS[j] = min(LIS[j], LIS[j-1] + w)
    print(len(LIS) - 1)


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