結果

問題 No.165 四角で囲え!
ユーザー maspymaspy
提出日時 2020-03-21 15:26:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,899 ms / 5,000 ms
コード長 933 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 77,240 KB
最終ジャッジ日時 2024-12-22 23:19:41
合計ジャッジ時間 29,889 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,506 ms
76,360 KB
testcase_01 AC 38 ms
53,136 KB
testcase_02 AC 38 ms
53,352 KB
testcase_03 AC 38 ms
54,168 KB
testcase_04 AC 39 ms
53,168 KB
testcase_05 AC 1,855 ms
76,556 KB
testcase_06 AC 449 ms
76,280 KB
testcase_07 AC 38 ms
53,320 KB
testcase_08 AC 39 ms
52,884 KB
testcase_09 AC 39 ms
53,356 KB
testcase_10 AC 38 ms
52,872 KB
testcase_11 AC 1,060 ms
76,300 KB
testcase_12 AC 642 ms
76,508 KB
testcase_13 AC 628 ms
76,384 KB
testcase_14 AC 469 ms
76,252 KB
testcase_15 AC 562 ms
76,500 KB
testcase_16 AC 2,735 ms
76,824 KB
testcase_17 AC 2,792 ms
76,984 KB
testcase_18 AC 2,899 ms
77,240 KB
testcase_19 AC 2,822 ms
76,852 KB
testcase_20 AC 2,841 ms
76,960 KB
testcase_21 AC 2,825 ms
76,948 KB
testcase_22 AC 2,811 ms
76,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import itertools

N, B = map(int, readline().split())
m = map(int, read().split())
X, Y, P = zip(*zip(m, m, m))


def compress(A):
    x_to_i = {x: i for i, x in enumerate(sorted(set(A)))}
    return tuple(x_to_i[x] for x in A)


X = compress(X)
Y = compress(Y)
H = max(X)
W = max(Y)
best_N = 0
for i, j in itertools.combinations(range(W + 2), 2):
    Ns = [0] * (H + 2)
    Ps = [0] * (H + 2)
    INF = B + 10
    Ps[-1] = INF
    for x, y, p in zip(X, Y, P):
        if i <= y < j:
            Ns[x] += 1
            Ps[x] += p
    R = 0
    S = 0
    N = 0
    for L in range(H + 1):
        while R < L or S + Ps[R] <= B:
            N += Ns[R]
            S += Ps[R]
            R += 1
        if best_N < N:
            best_N = N
        S -= Ps[L]
        N -= Ns[L]

print(best_N)
0