結果

問題 No.165 四角で囲え!
ユーザー tktk_snsntktk_snsn
提出日時 2021-03-20 16:14:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,793 ms / 5,000 ms
コード長 961 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 78,192 KB
最終ジャッジ日時 2024-11-21 03:47:24
合計ジャッジ時間 12,515 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 562 ms
78,100 KB
testcase_01 AC 40 ms
54,264 KB
testcase_02 AC 40 ms
54,656 KB
testcase_03 AC 40 ms
55,180 KB
testcase_04 AC 42 ms
54,808 KB
testcase_05 AC 755 ms
78,072 KB
testcase_06 AC 306 ms
77,232 KB
testcase_07 AC 41 ms
54,120 KB
testcase_08 AC 40 ms
54,856 KB
testcase_09 AC 40 ms
55,356 KB
testcase_10 AC 41 ms
53,760 KB
testcase_11 AC 519 ms
78,192 KB
testcase_12 AC 337 ms
77,680 KB
testcase_13 AC 442 ms
77,580 KB
testcase_14 AC 303 ms
77,488 KB
testcase_15 AC 280 ms
77,456 KB
testcase_16 AC 1,034 ms
77,908 KB
testcase_17 AC 761 ms
77,852 KB
testcase_18 AC 1,793 ms
77,648 KB
testcase_19 AC 873 ms
77,916 KB
testcase_20 AC 824 ms
74,028 KB
testcase_21 AC 795 ms
74,652 KB
testcase_22 AC 821 ms
73,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from operator import itemgetter
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
inf = 10**18

N, B = map(int, input().split())
P = list(tuple(map(int, input().split())) for _ in range(N))
P.sort(key=itemgetter(1))
X, _, _ = zip(*P)
X = sorted(set(X))

ans = 0

for i in range(len(X)):
    for j in range(i, len(X)):
        l = 0
        r = 0
        cnt = 0
        score = 0
        while r < N:
            yr = P[r][1]
            while r < N and P[r][1] == yr:
                if X[i] <= P[r][0] <= X[j]:
                    cnt += 1
                    score += P[r][2]
                r += 1
            while score > B:
                yl = P[l][1]
                while l < N and P[l][1] == yl:
                    if X[i] <= P[l][0] <= X[j]:
                        cnt -= 1
                        score -= P[l][2]
                    l += 1
            ans = max(ans, cnt)

print(ans)
0