結果

問題 No.777 再帰的ケーキ
ユーザー torikuminotorikumino
提出日時 2019-01-11 22:19:41
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 508 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 137,644 KB
最終ジャッジ日時 2024-11-30 08:31:25
合計ジャッジ時間 16,025 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,412 KB
testcase_01 AC 41 ms
52,468 KB
testcase_02 AC 40 ms
52,324 KB
testcase_03 AC 40 ms
52,748 KB
testcase_04 AC 40 ms
52,532 KB
testcase_05 AC 40 ms
52,612 KB
testcase_06 AC 40 ms
52,336 KB
testcase_07 AC 39 ms
53,084 KB
testcase_08 AC 39 ms
52,736 KB
testcase_09 AC 39 ms
52,756 KB
testcase_10 AC 40 ms
53,400 KB
testcase_11 AC 40 ms
53,352 KB
testcase_12 AC 41 ms
52,944 KB
testcase_13 AC 39 ms
53,284 KB
testcase_14 AC 39 ms
53,572 KB
testcase_15 AC 39 ms
53,004 KB
testcase_16 AC 39 ms
54,124 KB
testcase_17 AC 40 ms
52,944 KB
testcase_18 AC 42 ms
53,440 KB
testcase_19 AC 42 ms
53,524 KB
testcase_20 AC 40 ms
52,984 KB
testcase_21 AC 114 ms
77,680 KB
testcase_22 AC 117 ms
77,984 KB
testcase_23 AC 96 ms
76,660 KB
testcase_24 AC 93 ms
76,800 KB
testcase_25 AC 118 ms
77,860 KB
testcase_26 AC 118 ms
77,564 KB
testcase_27 AC 102 ms
76,732 KB
testcase_28 AC 1,982 ms
137,392 KB
testcase_29 AC 1,947 ms
137,644 KB
testcase_30 TLE -
testcase_31 AC 1,964 ms
134,924 KB
testcase_32 AC 566 ms
133,032 KB
testcase_33 AC 366 ms
111,172 KB
testcase_34 AC 525 ms
135,744 KB
testcase_35 AC 1,819 ms
132,376 KB
testcase_36 AC 561 ms
133,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
N = int(input())
A = sorted((tuple(map(int, input().split())) for _ in range(N)),
        key=lambda x: (x[0],-x[1]))
P = sorted((t[1],i) for i,t in enumerate(A))
B = [0]*(N+2)
def U(i, v):
    while i <= N:
        B[i] = max(B[i], v)
        i += i&-i
def Q(i):
    v = 0
    while i > 0:
        v = max(v, B[i])
        i -= i&-i
    return v
for i in range(N)[::-1]:
    _, b, c = A[i]
    j = N-bisect(P, (b,N))
    v = Q(j)
    j = N-bisect(P, (b,i))+1
    U(j, v+c)
print(max(B))
0