結果
問題 | No.989 N×Mマス計算(K以上) |
ユーザー | usa1104_1224 |
提出日時 | 2020-03-07 19:37:51 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,471 bytes |
コンパイル時間 | 2,250 ms |
コンパイル使用メモリ | 77,436 KB |
実行使用メモリ | 56,928 KB |
最終ジャッジ日時 | 2024-10-15 14:24:12 |
合計ジャッジ時間 | 10,584 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 124 ms
41,332 KB |
testcase_01 | AC | 106 ms
39,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 116 ms
41,208 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 131 ms
41,348 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String args[] ){ Scanner sc =new Scanner(System.in); //2分探索 int N = sc.nextInt(); int M = sc.nextInt(); int K = sc.nextInt(); String op = sc.next(); int B[] = new int[M]; int A[] =new int[N]; int ans = 0; for(int i = 0 ;i<B.length;i++) { B[i] = sc.nextInt(); } Arrays.sort(B); for(int i = 0 ;i<A.length;i++) { A[i] = sc.nextInt(); } Arrays.sort(A); if(op.equals("+")) { for(int i=0;i<A.length;i++) { if(binary_search_find_closet(A[i],B,K)==-1) { }else { ans += B.length - binary_search_find_closet(A[i],B,K); } } }else { for(int i=0;i<A.length;i++) { if(Pbinary_search_find_closet(A[i],B,K)==-1) { }else { ans += B.length - Pbinary_search_find_closet(A[i],B,K); } } } System.out.println(ans); } public static int binary_search_find_closet(int A,int B[],int K){ //2分探索 if(B.length == 1) { if(A*B[0]>=K) { return 0; }else { return -1; } } int min_diff=Integer.MAX_VALUE; int left = 0; int right =B.length-1; int min_diff_right=0; int min_diff_left=0; int closest_num=-1; while(left <= right) { int mid = left +(right-left)/2; //中心の左右の値と目標との差を計算する。 if (mid + 1 < B.length) { min_diff_right = B[mid+1]+A - K; } if (mid > 0) { min_diff_left = B[mid-1]+A - K; } if (min_diff_left < min_diff && min_diff_left > 0) { min_diff = min_diff_left; closest_num = mid - 1; } if (min_diff_right < min_diff && min_diff_right > 0) { min_diff = min_diff_right; closest_num = mid + 1; } if (B[mid]+A < K) { left = mid + 1; }else if (B[mid]+A> K) { right = mid - 1 ; }else { return mid; } } return closest_num; } public static int Pbinary_search_find_closet(int A,int B[],int K){ //2分探索 int min_diff=Integer.MAX_VALUE; int left = 0; int right =B.length-1; int min_diff_right=0; int min_diff_left=0; int closest_num=-1; if(B.length == 1) { if(A*B[0]>=K) { return 0; }else { return -1; } } while(left <= right) { int mid = left +(right-left)/2; //中心の左右の値と目標との差を計算する。 if (mid + 1 < B.length) { min_diff_right = B[mid+1]*A - K; } if (mid > 0) { min_diff_left = B[mid-1]*A - K; } // 最初の差と最も最小に近い値を更新する。 if (min_diff_left < min_diff && min_diff_left > 0) { min_diff = min_diff_left; closest_num = mid - 1; } if (min_diff_right < min_diff && min_diff_right > 0) { min_diff = min_diff_right; closest_num = mid + 1; } if (B[mid]*A < K) { left = mid + 1; }else if (B[mid]*A> K) { right = mid - 1 ; }else { return mid; } } return closest_num; } }