結果

問題 No.1597 Matrix Sort
ユーザー tamatotamato
提出日時 2021-07-09 21:44:52
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 719 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 104,940 KB
最終ジャッジ日時 2024-07-01 15:46:17
合計ジャッジ時間 34,088 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,456 KB
testcase_01 AC 44 ms
59,688 KB
testcase_02 AC 44 ms
58,876 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,034 ms
103,600 KB
testcase_11 AC 1,020 ms
99,620 KB
testcase_12 AC 1,149 ms
104,020 KB
testcase_13 TLE -
testcase_14 AC 1,493 ms
99,804 KB
testcase_15 AC 913 ms
104,940 KB
testcase_16 AC 1,364 ms
102,780 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 1,486 ms
99,392 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 184 ms
102,584 KB
testcase_25 AC 161 ms
102,176 KB
testcase_26 AC 38 ms
53,296 KB
testcase_27 AC 39 ms
54,268 KB
testcase_28 AC 38 ms
53,480 KB
testcase_29 AC 46 ms
60,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from bisect import bisect_left
    input = sys.stdin.readline

    N, K, P = map(int, input().split())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))

    A = [a % P for a in A]
    B = [b % P for b in B]
    A.sort()
    B.sort()

    ok = P-1
    ng = -1
    mid = (ok + ng) // 2
    while ok - ng > 1:
        cnt = 0
        for a in A:
            cnt += bisect_left(B, mid - a + 1)
            cnt += bisect_left(B, P + mid - a + 1) - bisect_left(B, P - a)
        if cnt >= K:
            ok = mid
        else:
            ng = mid
        mid = (ok + ng) // 2
    print(ok)


if __name__ == '__main__':
    main()
0