結果

問題 No.1597 Matrix Sort
ユーザー tentententen
提出日時 2021-07-14 09:15:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 540 ms / 1,500 ms
コード長 1,995 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 78,004 KB
実行使用メモリ 49,768 KB
最終ジャッジ日時 2024-07-03 08:10:57
合計ジャッジ時間 14,318 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,048 KB
testcase_01 AC 51 ms
37,364 KB
testcase_02 AC 52 ms
37,228 KB
testcase_03 AC 540 ms
48,340 KB
testcase_04 AC 525 ms
48,276 KB
testcase_05 AC 524 ms
48,112 KB
testcase_06 AC 490 ms
47,684 KB
testcase_07 AC 522 ms
47,712 KB
testcase_08 AC 495 ms
49,768 KB
testcase_09 AC 483 ms
49,048 KB
testcase_10 AC 293 ms
47,116 KB
testcase_11 AC 323 ms
49,276 KB
testcase_12 AC 399 ms
47,564 KB
testcase_13 AC 499 ms
47,748 KB
testcase_14 AC 497 ms
49,392 KB
testcase_15 AC 364 ms
47,124 KB
testcase_16 AC 406 ms
47,872 KB
testcase_17 AC 406 ms
49,604 KB
testcase_18 AC 502 ms
47,904 KB
testcase_19 AC 447 ms
48,624 KB
testcase_20 AC 414 ms
47,668 KB
testcase_21 AC 376 ms
48,980 KB
testcase_22 AC 373 ms
47,396 KB
testcase_23 AC 366 ms
48,140 KB
testcase_24 AC 224 ms
44,884 KB
testcase_25 AC 215 ms
45,760 KB
testcase_26 AC 51 ms
37,376 KB
testcase_27 AC 52 ms
37,080 KB
testcase_28 AC 53 ms
37,224 KB
testcase_29 AC 52 ms
36,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long k = sc.nextLong();
        int p = sc.nextInt();
        int[] aArr = new int[n];
        for (int i = 0; i < n; i++) {
            aArr[i] = sc.nextInt() % p;
        }
        Arrays.sort(aArr);
        int[] bArr = new int[n];
        for (int i = 0; i < n; i++) {
            bArr[i] = sc.nextInt() % p;
        }
        Arrays.sort(bArr);
        int left = 0;
        int right = p;
        while (right - left > 1) {
            int m = (left + right) / 2;
            int one = n - 1;
            int zero = n - 1;
            int two = n - 1;
            long count = 0;
            for (int i = 0; i < n; i++) {
                while (one >= 0 && aArr[i] + bArr[one] >= m) {
                    one--;
                }
                count += one + 1;
                while (zero >= 0 && aArr[i] + bArr[zero] >= p) {
                    zero--;
                }
                while (two >= 0 && aArr[i] + bArr[two] >= p + m) {
                    two--;
                }
                count += two - zero;
            }
            if (count >= k) {
                right = m;
            } else {
                left = m;
            }
        }
        System.out.println(left);
    }
    
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0