結果
問題 | No.1597 Matrix Sort |
ユーザー | lavox |
提出日時 | 2021-07-09 22:33:44 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,268 bytes |
コンパイル時間 | 3,436 ms |
コンパイル使用メモリ | 77,704 KB |
実行使用メモリ | 70,608 KB |
最終ジャッジ日時 | 2024-07-01 17:16:13 |
合計ジャッジ時間 | 33,317 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
52,788 KB |
testcase_01 | AC | 134 ms
54,060 KB |
testcase_02 | AC | 136 ms
53,840 KB |
testcase_03 | AC | 1,385 ms
66,624 KB |
testcase_04 | AC | 1,371 ms
66,536 KB |
testcase_05 | AC | 1,382 ms
66,432 KB |
testcase_06 | AC | 1,387 ms
66,748 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1,169 ms
66,264 KB |
testcase_09 | AC | 1,206 ms
69,012 KB |
testcase_10 | AC | 666 ms
66,860 KB |
testcase_11 | AC | 772 ms
65,864 KB |
testcase_12 | AC | 1,107 ms
66,368 KB |
testcase_13 | AC | 1,260 ms
67,012 KB |
testcase_14 | AC | 1,384 ms
66,760 KB |
testcase_15 | AC | 1,047 ms
66,492 KB |
testcase_16 | AC | 1,307 ms
68,692 KB |
testcase_17 | AC | 1,340 ms
66,032 KB |
testcase_18 | AC | 1,471 ms
68,860 KB |
testcase_19 | AC | 1,487 ms
70,608 KB |
testcase_20 | AC | 1,399 ms
66,464 KB |
testcase_21 | AC | 1,367 ms
68,184 KB |
testcase_22 | AC | 1,263 ms
68,680 KB |
testcase_23 | AC | 1,085 ms
66,788 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 130 ms
54,140 KB |
testcase_27 | AC | 129 ms
54,076 KB |
testcase_28 | AC | 128 ms
54,072 KB |
testcase_29 | AC | 137 ms
53,980 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = Integer.parseInt(sc.next()); long K = Long.parseLong(sc.next()); int P = Integer.parseInt(sc.next()); int[] A = new int[N]; for ( int i = 0 ; i < N ; i++ ) { A[i] = Integer.parseInt(sc.next()); } int[] B = new int[N]; for ( int i = 0 ; i < N ; i++ ) { B[i] = Integer.parseInt(sc.next()); } sc.close(); Arrays.sort(B); int min = 0; int max = P - 1; while ( max - min > 1 ) { int mid = (min + max) / 2; if ( count(A, B, mid, P) < K ) { min = mid; } else { max = mid; } } System.out.println(min); } static long count(int[] A, int[] B, int x, int P) { long cnt = 0; for ( int a : A ) { // 0 == x, P == x + P cnt += count(B, x - a); cnt += count(B, x + P - a) - count(B, P - a); } return cnt; } static long count(int[] B, int x) { if ( B[0] >= x ) { return 0; } else if ( B[B.length - 1] < x ) { return B.length; } int min = 0; int max = B.length - 1; while ( max - min > 1 ) { int mid = (min + max) / 2; if ( B[mid] < x ) { min = mid; } else { max = mid; } } return min + 1; } }