結果
問題 |
No.1597 Matrix Sort
|
ユーザー |
![]() |
提出日時 | 2025-06-12 18:36:05 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,108 bytes |
コンパイル時間 | 334 ms |
コンパイル使用メモリ | 82,404 KB |
実行使用メモリ | 116,748 KB |
最終ジャッジ日時 | 2025-06-12 18:36:45 |
合計ジャッジ時間 | 28,816 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 18 TLE * 9 |
ソースコード
import bisect def main(): import sys input = sys.stdin.read data = input().split() idx = 0 n = int(data[idx]) idx += 1 k = int(data[idx]) idx += 1 p = int(data[idx]) idx += 1 A = list(map(int, data[idx:idx+n])) idx += n B = list(map(int, data[idx:idx+n])) idx += n B.sort() len_B = n low = 0 high = p - 1 while low < high: mid = (low + high) // 2 total = 0 for a in A: L = (p - a) % p R = (mid - a) % p if R >= L: left = bisect.bisect_left(B, L) right = bisect.bisect_right(B, R) total += right - left else: left = bisect.bisect_left(B, L) part1 = len_B - left part2 = bisect.bisect_right(B, R) total += part1 + part2 if total >= k: break # Early exit if possible if total >= k: high = mid else: low = mid + 1 print(low) if __name__ == "__main__": main()