結果

問題 No.165 四角で囲え!
ユーザー maspymaspy
提出日時 2020-03-21 15:26:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,595 ms / 5,000 ms
コード長 933 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-06-02 05:28:46
合計ジャッジ時間 27,175 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,367 ms
76,352 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 34 ms
52,608 KB
testcase_03 AC 35 ms
52,196 KB
testcase_04 AC 36 ms
52,736 KB
testcase_05 AC 1,705 ms
76,368 KB
testcase_06 AC 401 ms
76,288 KB
testcase_07 AC 36 ms
52,608 KB
testcase_08 AC 35 ms
52,352 KB
testcase_09 AC 36 ms
52,352 KB
testcase_10 AC 34 ms
52,096 KB
testcase_11 AC 957 ms
76,160 KB
testcase_12 AC 587 ms
76,416 KB
testcase_13 AC 579 ms
76,312 KB
testcase_14 AC 440 ms
76,132 KB
testcase_15 AC 510 ms
75,868 KB
testcase_16 AC 2,472 ms
76,928 KB
testcase_17 AC 2,579 ms
76,464 KB
testcase_18 AC 2,593 ms
76,552 KB
testcase_19 AC 2,533 ms
76,588 KB
testcase_20 AC 2,526 ms
76,728 KB
testcase_21 AC 2,540 ms
76,592 KB
testcase_22 AC 2,595 ms
76,800 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