結果

問題 No.1597 Matrix Sort
ユーザー mrngmrng
提出日時 2021-12-15 13:51:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 296 ms / 1,500 ms
コード長 413 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 180,084 KB
最終ジャッジ日時 2024-07-23 19:56:09
合計ジャッジ時間 8,022 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 238 ms
179,968 KB
testcase_04 AC 283 ms
179,664 KB
testcase_05 AC 286 ms
179,604 KB
testcase_06 AC 296 ms
179,772 KB
testcase_07 AC 246 ms
179,672 KB
testcase_08 AC 271 ms
179,840 KB
testcase_09 AC 277 ms
179,968 KB
testcase_10 AC 215 ms
179,540 KB
testcase_11 AC 223 ms
179,968 KB
testcase_12 AC 111 ms
101,108 KB
testcase_13 AC 132 ms
109,696 KB
testcase_14 AC 264 ms
180,084 KB
testcase_15 AC 114 ms
100,864 KB
testcase_16 AC 135 ms
109,312 KB
testcase_17 AC 218 ms
179,712 KB
testcase_18 AC 261 ms
179,812 KB
testcase_19 AC 218 ms
179,780 KB
testcase_20 AC 197 ms
179,616 KB
testcase_21 AC 197 ms
179,648 KB
testcase_22 AC 198 ms
179,876 KB
testcase_23 AC 215 ms
179,456 KB
testcase_24 AC 88 ms
98,588 KB
testcase_25 AC 83 ms
97,152 KB
testcase_26 AC 38 ms
51,840 KB
testcase_27 AC 39 ms
51,840 KB
testcase_28 AC 38 ms
52,352 KB
testcase_29 AC 103 ms
135,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
n,k,p = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
c = [0]*p
for i in range(n):
	c[b[i]] += 1
for i in range(p-1):
	c[i+1] += c[i]
l,r = -1,p
while r-l>1:
	m = (l+r)//2
	cnt = 0
	for i in range(n):
		cnt += c[min(p-1,m+p-a[i]-1)]-c[p-a[i]-1]
		if m>=a[i]+1: cnt += c[m-a[i]-1]
	if cnt<k: l = m
	else: r = m
print(l)
0