結果
問題 | No.1597 Matrix Sort |
ユーザー | shotoyoo |
提出日時 | 2021-07-10 00:39:53 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 859 bytes |
コンパイル時間 | 190 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 105,472 KB |
最終ジャッジ日時 | 2024-07-01 19:26:58 |
合計ジャッジ時間 | 33,538 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,224 KB |
testcase_01 | AC | 50 ms
57,728 KB |
testcase_02 | AC | 48 ms
58,112 KB |
testcase_03 | AC | 133 ms
101,632 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | AC | 689 ms
103,808 KB |
testcase_11 | AC | 1,079 ms
102,144 KB |
testcase_12 | AC | 1,105 ms
104,448 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | AC | 955 ms
104,576 KB |
testcase_16 | AC | 1,393 ms
105,088 KB |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | AC | 227 ms
101,632 KB |
testcase_25 | AC | 164 ms
101,248 KB |
testcase_26 | AC | 42 ms
52,224 KB |
testcase_27 | AC | 41 ms
52,224 KB |
testcase_28 | AC | 41 ms
51,968 KB |
testcase_29 | AC | 53 ms
60,928 KB |
ソースコード
import sys input = lambda : sys.stdin.readline().rstrip() sys.setrecursionlimit(2*10**5+10) write = lambda x: sys.stdout.write(x+"\n") debug = lambda x: sys.stderr.write(x+"\n") writef = lambda x: print("{:.12f}".format(x)) n,k,p = list(map(int, input().split())) a = list(map(int, input().split())) b = list(map(int, input().split())) a.sort() b.sort() from bisect import bisect_left as bl, bisect_right as br def sub(x): val = 0 for i in range(n): v = a[i] ind = bl(b, p-v) i0 = br(b, x-v) i1 = br(b, x+p-v) # print(v, ind, i0, i1, x) if i0>0: val += min(i0, ind) if i1>=ind: val += (i1-ind) if val>=k: return 0 return 1 l = -1 r = p+1 while abs(l-r)>1: m = (l+r)//2 if sub(m): l = m else: r = m ans = r print(ans)