結果
問題 | No.165 四角で囲え! |
ユーザー | convexineq |
提出日時 | 2020-12-18 15:12:16 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,933 ms / 5,000 ms |
コード長 | 1,250 bytes |
コンパイル時間 | 199 ms |
コンパイル使用メモリ | 82,248 KB |
実行使用メモリ | 79,716 KB |
最終ジャッジ日時 | 2024-09-21 09:10:21 |
合計ジャッジ時間 | 14,916 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 742 ms
78,300 KB |
testcase_01 | AC | 38 ms
53,196 KB |
testcase_02 | AC | 38 ms
53,120 KB |
testcase_03 | AC | 38 ms
54,220 KB |
testcase_04 | AC | 40 ms
53,948 KB |
testcase_05 | AC | 973 ms
79,196 KB |
testcase_06 | AC | 265 ms
78,236 KB |
testcase_07 | AC | 40 ms
52,904 KB |
testcase_08 | AC | 38 ms
52,788 KB |
testcase_09 | AC | 38 ms
52,908 KB |
testcase_10 | AC | 39 ms
53,552 KB |
testcase_11 | AC | 487 ms
77,740 KB |
testcase_12 | AC | 259 ms
77,216 KB |
testcase_13 | AC | 332 ms
77,676 KB |
testcase_14 | AC | 205 ms
76,748 KB |
testcase_15 | AC | 210 ms
76,820 KB |
testcase_16 | AC | 1,346 ms
79,632 KB |
testcase_17 | AC | 1,173 ms
79,444 KB |
testcase_18 | AC | 1,933 ms
79,624 KB |
testcase_19 | AC | 1,293 ms
79,716 KB |
testcase_20 | AC | 1,176 ms
79,240 KB |
testcase_21 | AC | 1,172 ms
78,976 KB |
testcase_22 | AC | 1,173 ms
79,032 KB |
ソースコード
n,b = map(int,input().split()) xyp = [] sx = set() sy = set() for _ in range(n): x,y,p = map(int,input().split()) xyp.append((x,y,p)) sx.add(x) sy.add(y) *sx, = sorted(sx) *sy, = sorted(sy) zx = {si:i for i,si in enumerate(sx)} zy = {si:i for i,si in enumerate(sy)} lx = len(sx) ly = len(sy) cnt = [[0]*ly for _ in range(lx)] pts = [[0]*ly for _ in range(lx)] for x,y,p in xyp: cnt[zx[x]][zy[y]] += 1 pts[zx[x]][zy[y]] += p for i in range(lx): for j in range(1,ly): cnt[i][j] += cnt[i][j-1] pts[i][j] += pts[i][j-1] for j in range(ly): for i in range(1,lx): cnt[i][j] += cnt[i-1][j] pts[i][j] += pts[i-1][j] def get_sum(a,h1,h2,w1,w2): #閉長方形 [h1からh2]*[w1からw2] の和 if h1 and w1: return a[h2][w2] - a[h1-1][w2] - a[h2][w1-1] + a[h1-1][w1-1] elif h1: return a[h2][w2] - a[h1-1][w2] elif w1: return a[h2][w2] - a[h2][w1-1] else: return a[h2][w2] ans = 0 for x0 in range(lx): for x1 in range(x0,lx): y1 = 0 for y0 in range(ly): if y1 < y0: y1 = y0 while y1 < ly and get_sum(pts,x0,x1,y0,y1) <= b: y1 += 1 if y1: ans = max(ans,get_sum(cnt,x0,x1,y0,y1-1)) print(ans)