結果
問題 | No.1597 Matrix Sort |
ユーザー | Navier_Boltzmann |
提出日時 | 2022-02-06 17:28:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 639 bytes |
コンパイル時間 | 91 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 261,276 KB |
最終ジャッジ日時 | 2024-06-11 13:50:46 |
合計ジャッジ時間 | 3,426 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
16,128 KB |
testcase_01 | AC | 25 ms
10,752 KB |
testcase_02 | AC | 26 ms
10,880 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
N,K,P = map(int,input().split()) A = list(map(int,input().split())) B = list(map(int,input().split())) A.sort() B.sort() from collections import Counter c = Counter(B) F = [0]*(P+1) for i in range(1,P): F[i+1] = F[i] + c[i] def is_ok(x): tmp = 0 for a in A: if 0<=x-a<=P-1: tmp += F[x-a+1] - F[0] if P-a <= P-1: tmp += F[min(P-1,P+x-a)+1] - F[P-a] return tmp >= K y = P-1 x = 0 if is_ok(0): print(0) exit() while y-x>1: mid = (y+x)//2 if is_ok(mid): y = mid else: x = mid print(y)