結果
問題 | No.165 四角で囲え! |
ユーザー | chocorusk |
提出日時 | 2020-09-18 18:44:01 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 858 bytes |
コンパイル時間 | 175 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 18,080 KB |
最終ジャッジ日時 | 2024-06-22 08:07:14 |
合計ジャッジ時間 | 29,495 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3,745 ms
11,008 KB |
testcase_01 | AC | 26 ms
11,008 KB |
testcase_02 | AC | 26 ms
10,880 KB |
testcase_03 | AC | 25 ms
10,880 KB |
testcase_04 | AC | 26 ms
10,880 KB |
testcase_05 | AC | 4,872 ms
11,008 KB |
testcase_06 | AC | 1,197 ms
10,880 KB |
testcase_07 | AC | 26 ms
11,008 KB |
testcase_08 | AC | 25 ms
11,008 KB |
testcase_09 | AC | 26 ms
10,880 KB |
testcase_10 | AC | 26 ms
10,880 KB |
testcase_11 | AC | 3,232 ms
11,008 KB |
testcase_12 | AC | 2,080 ms
11,136 KB |
testcase_13 | AC | 1,148 ms
11,136 KB |
testcase_14 | AC | 1,386 ms
11,008 KB |
testcase_15 | AC | 1,316 ms
10,752 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
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): k=bisect_left(z, qs[j][1:]) z=z[:k]+[qs[j][1:]]+z[k:] if j<n-1 and qs[j+1][0]==qs[j][0]: continue 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)