結果

問題 No.1597 Matrix Sort
ユーザー tamatotamato
提出日時 2021-07-09 22:29:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 1,500 ms
コード長 1,396 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,064 KB
最終ジャッジ日時 2024-07-01 17:06:07
合計ジャッジ時間 8,648 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 375 ms
99,456 KB
testcase_04 AC 381 ms
99,316 KB
testcase_05 AC 388 ms
99,072 KB
testcase_06 AC 386 ms
98,944 KB
testcase_07 AC 392 ms
99,312 KB
testcase_08 AC 280 ms
99,404 KB
testcase_09 AC 249 ms
99,412 KB
testcase_10 AC 147 ms
103,040 KB
testcase_11 AC 164 ms
99,456 KB
testcase_12 AC 233 ms
104,064 KB
testcase_13 AC 342 ms
102,784 KB
testcase_14 AC 363 ms
99,072 KB
testcase_15 AC 238 ms
104,064 KB
testcase_16 AC 316 ms
102,528 KB
testcase_17 AC 348 ms
99,412 KB
testcase_18 AC 379 ms
99,456 KB
testcase_19 AC 332 ms
99,280 KB
testcase_20 AC 314 ms
99,072 KB
testcase_21 AC 261 ms
99,328 KB
testcase_22 AC 283 ms
102,272 KB
testcase_23 AC 280 ms
102,912 KB
testcase_24 AC 106 ms
102,272 KB
testcase_25 AC 84 ms
100,096 KB
testcase_26 AC 38 ms
52,480 KB
testcase_27 AC 38 ms
51,712 KB
testcase_28 AC 39 ms
51,968 KB
testcase_29 AC 40 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    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()))

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

    ok = P-1
    ng = -1
    mid = (ok + ng) // 2
    while ok - ng > 1:
        cnt = 0
        i0 = i1 = i2 = 0
        for i in range(N):
            if B[i] <= mid - A[0]:
                i0 = i+1
            if B[i] < P - A[0]:
                i1 = i+1
            if B[i] <= mid + P - A[0]:
                i2 = i+1
        for a in A:
            while True:
                flg = 0
                if i0 < N:
                    if B[i0] <= mid - a:
                        i0 += 1
                        flg = 1
                if i1 < N:
                    if B[i1] < P - a:
                        i1 += 1
                        flg = 1
                if i2 < N:
                    if B[i2] <= mid + P - a:
                        i2 += 1
                        flg = 1
                if not flg:
                    break
            #print(i0, i1, i2)
            cnt += i0 + i2 - i1
        if cnt >= K:
            ok = mid
        else:
            ng = mid
        #print(ok, ng)
        mid = (ok + ng) // 2
    print(ok)


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