結果

問題 No.165 四角で囲え!
ユーザー rlangevinrlangevin
提出日時 2023-07-27 12:11:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 798 ms / 5,000 ms
コード長 1,080 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 77,488 KB
最終ジャッジ日時 2024-10-04 06:45:49
合計ジャッジ時間 9,229 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 469 ms
76,920 KB
testcase_01 AC 40 ms
54,096 KB
testcase_02 AC 40 ms
54,272 KB
testcase_03 AC 43 ms
56,236 KB
testcase_04 AC 39 ms
54,444 KB
testcase_05 AC 577 ms
77,180 KB
testcase_06 AC 210 ms
76,976 KB
testcase_07 AC 38 ms
55,196 KB
testcase_08 AC 35 ms
54,180 KB
testcase_09 AC 35 ms
55,072 KB
testcase_10 AC 35 ms
54,624 KB
testcase_11 AC 419 ms
77,488 KB
testcase_12 AC 285 ms
77,452 KB
testcase_13 AC 229 ms
77,176 KB
testcase_14 AC 252 ms
77,440 KB
testcase_15 AC 237 ms
77,044 KB
testcase_16 AC 798 ms
77,460 KB
testcase_17 AC 647 ms
77,200 KB
testcase_18 AC 709 ms
76,992 KB
testcase_19 AC 701 ms
77,240 KB
testcase_20 AC 638 ms
76,952 KB
testcase_21 AC 645 ms
76,904 KB
testcase_22 AC 642 ms
76,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, B = map(int, input().split())
X, Y, P = [0] * N, [0] * N, [0] * N
XS = set()
DD = []
for i in range(N):
    X[i], Y[i], P[i] = map(int, input().split())
    XS.add(X[i])
    DD.append((Y[i], X[i], P[i]))

DD.sort()

from collections import *
def solve(L):
    inf = 10 ** 18
    K = len(L)
    L.append((inf, inf))
    Q = deque()
    now = -1
    val = 0
    temp = 0
    for i in range(K):
        Q.append(L[i])
        val += L[i][1]
        if L[i][0] == L[i + 1][0]:
            continue
        while Q:
            if val > B or Q[0][0] == now:
                now = Q[0][0]
                val -= Q[0][1]
                Q.popleft()
            else:
                break
        temp = max(temp, len(Q))
    return temp


XL = sorted(list(XS))
M = len(XL)
ans = 0
for i in range(M):
    for j in range(i, M):
        left = XL[i]
        right = XL[j]
        D = []
        for k in range(N):
            if left <= DD[k][1] <= right:
                D.append((DD[k][0], DD[k][2]))
        ans = max(ans, solve(D))

print(ans)
0