結果

問題 No.165 四角で囲え!
ユーザー roarisroaris
提出日時 2019-12-06 01:33:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,237 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 79,156 KB
最終ジャッジ日時 2024-06-02 09:03:16
合計ジャッジ時間 18,958 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,946 ms
77,232 KB
testcase_01 AC 32 ms
52,096 KB
testcase_02 AC 31 ms
52,480 KB
testcase_03 AC 31 ms
51,968 KB
testcase_04 AC 32 ms
52,864 KB
testcase_05 AC 2,458 ms
77,312 KB
testcase_06 AC 521 ms
77,192 KB
testcase_07 AC 32 ms
52,480 KB
testcase_08 AC 30 ms
52,224 KB
testcase_09 AC 31 ms
52,352 KB
testcase_10 AC 30 ms
52,224 KB
testcase_11 AC 2,502 ms
77,448 KB
testcase_12 TLE -
testcase_13 AC 4,996 ms
79,156 KB
testcase_14 AC 3,798 ms
77,548 KB
testcase_15 AC 3,817 ms
77,584 KB
testcase_16 AC 3,770 ms
78,560 KB
testcase_17 AC 3,771 ms
78,000 KB
testcase_18 AC 3,634 ms
77,844 KB
testcase_19 AC 3,825 ms
77,968 KB
testcase_20 AC 3,815 ms
78,024 KB
testcase_21 AC 3,794 ms
77,920 KB
testcase_22 AC 3,803 ms
77,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

N, B = map(int, input().split())
XYP = [tuple(map(int, input().split())) for _ in range(N)]
XYP.sort(key=lambda k: k[0])
ans = 0

for i in range(N):
    Xi, _, _ = XYP[i]
    
    for j in range(i, N):
        Xj, _, _ = XYP[j]
        YP = []
        
        for k in range(N):
            Xk, Yk, Pk = XYP[k]
            
            if Xi<=Xk<=Xj:
                YP.append((Yk, Pk))
        
        YP.sort(key=lambda k: k[0])
        YP += [('a', 'a')]
        cnt = []
        point = []
        c = 0
        p = 0
        
        for i in range(len(YP)-1):
            c += 1
            p += YP[i][1]
            
            if YP[i][0]!=YP[i+1][0]:
                cnt.append(c)
                point.append(p)
                c = 0
                p = 0
        
        r = 0
        cur_c = 0
        cur_p = 0
        
        for l in range(len(cnt)):
            while r<len(cnt) and cur_p+point[r]<=B:
                cur_c += cnt[r]
                cur_p += point[r]
                r += 1
            
            ans = max(ans, cur_c)
            
            if l==r:
                r += 1
            else:
                cur_c -= cnt[l]
                cur_p -= point[l]
    
print(ans)
0