結果

問題 No.165 四角で囲え!
ユーザー chocoruskchocorusk
提出日時 2020-09-18 18:41:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 858 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 77,676 KB
最終ジャッジ日時 2024-06-22 08:06:12
合計ジャッジ時間 4,449 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 218 ms
76,636 KB
testcase_01 AC 34 ms
53,928 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 34 ms
53,004 KB
testcase_05 AC 287 ms
76,544 KB
testcase_06 AC 146 ms
77,224 KB
testcase_07 WA -
testcase_08 AC 35 ms
52,488 KB
testcase_09 AC 33 ms
52,340 KB
testcase_10 AC 33 ms
52,644 KB
testcase_11 AC 203 ms
77,476 KB
testcase_12 WA -
testcase_13 AC 114 ms
76,804 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 356 ms
77,676 KB
testcase_17 WA -
testcase_18 AC 259 ms
77,508 KB
testcase_19 AC 291 ms
77,092 KB
testcase_20 AC 234 ms
76,920 KB
testcase_21 AC 218 ms
76,856 KB
testcase_22 AC 216 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read=sys.stdin.buffer.read
readline=sys.stdin.buffer.readline
readlines=sys.stdin.buffer.readlines

n, b=map(int, readline().split())
xyp=list(map(int, read().split()))
xs=xyp[::3]
ys=xyp[1::3]
ps=xyp[2::3]
qs=list(zip(xs, ys, ps))
qs.sort()
ans=0
from bisect import bisect_left
for i in range(n):
    if i>0 and qs[i-1][0]==qs[i][0]:
        continue
    z=[]
    for j in range(i, n):
        if j<n-1 and qs[j+1][0]==qs[j][0]:
            continue
        k=bisect_left(z, qs[j][1:])
        z=z[:k]+[qs[j][1:]]+z[k:]
        s=0
        l=0
        for r, q in enumerate(z):
            s+=q[1]
            if r<len(z)-1 and z[r+1][0]==q[0]:
                continue
            while l<=r and (s>b or (l>0 and z[l-1][0]==z[l][0])):
                s-=z[l][1]
                l+=1
            if ans<r-l+1:
                ans=r-l+1
print(ans)
0