結果

問題 No.1597 Matrix Sort
ユーザー wolgnikwolgnik
提出日時 2021-07-09 22:30:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 470 ms / 1,500 ms
コード長 530 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 258,432 KB
最終ジャッジ日時 2024-07-01 17:09:40
合計ジャッジ時間 9,050 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 381 ms
243,728 KB
testcase_04 AC 409 ms
243,680 KB
testcase_05 AC 470 ms
244,236 KB
testcase_06 AC 454 ms
244,160 KB
testcase_07 AC 380 ms
244,064 KB
testcase_08 AC 351 ms
245,412 KB
testcase_09 AC 355 ms
244,476 KB
testcase_10 AC 287 ms
257,920 KB
testcase_11 AC 290 ms
245,408 KB
testcase_12 AC 114 ms
101,976 KB
testcase_13 AC 173 ms
118,116 KB
testcase_14 AC 449 ms
245,060 KB
testcase_15 AC 126 ms
101,392 KB
testcase_16 AC 159 ms
117,888 KB
testcase_17 AC 333 ms
244,360 KB
testcase_18 AC 438 ms
244,440 KB
testcase_19 AC 369 ms
244,108 KB
testcase_20 AC 316 ms
244,304 KB
testcase_21 AC 307 ms
244,216 KB
testcase_22 AC 315 ms
244,144 KB
testcase_23 AC 301 ms
258,432 KB
testcase_24 AC 83 ms
96,384 KB
testcase_25 AC 83 ms
96,128 KB
testcase_26 AC 40 ms
51,968 KB
testcase_27 AC 39 ms
51,712 KB
testcase_28 AC 40 ms
52,480 KB
testcase_29 AC 207 ms
214,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, K, P = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

bc = [0] * P
for x in b: bc[x] += 1
cs = [0] * (P + 1)
for i in range(P): cs[i + 1] = cs[i] + bc[i]

def check(x):
  c = 0
  for y in a:
    l = (P - y) % P
    r = (P - y + x) % P
    if l <= r: c += cs[r + 1] - cs[l]
    else: c += cs[-1] - cs[l] + cs[r + 1]
  return c >= K

ok = P - 1
ng = -1
while ok - ng > 1:
  m = (ok + ng) // 2
  if check(m): ok = m
  else: ng = m
print(ok)
0