結果

問題 No.545 ママの大事な二人の子供
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-15 09:41:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 1,665 bytes
コンパイル時間 2,662 ms
コンパイル使用メモリ 80,460 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-10-08 02:03:43
合計ジャッジ時間 10,589 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,072 KB
testcase_01 AC 152 ms
54,356 KB
testcase_02 AC 148 ms
53,892 KB
testcase_03 AC 152 ms
54,152 KB
testcase_04 AC 148 ms
54,308 KB
testcase_05 AC 151 ms
54,020 KB
testcase_06 AC 150 ms
54,012 KB
testcase_07 AC 149 ms
53,688 KB
testcase_08 AC 149 ms
53,688 KB
testcase_09 AC 144 ms
53,860 KB
testcase_10 AC 147 ms
54,100 KB
testcase_11 AC 147 ms
53,932 KB
testcase_12 AC 147 ms
53,940 KB
testcase_13 AC 154 ms
54,052 KB
testcase_14 AC 155 ms
54,064 KB
testcase_15 AC 152 ms
53,900 KB
testcase_16 AC 159 ms
54,160 KB
testcase_17 AC 161 ms
54,156 KB
testcase_18 AC 191 ms
54,488 KB
testcase_19 AC 201 ms
41,812 KB
testcase_20 AC 211 ms
42,340 KB
testcase_21 AC 145 ms
41,216 KB
testcase_22 AC 288 ms
49,780 KB
testcase_23 AC 375 ms
51,820 KB
testcase_24 AC 284 ms
49,656 KB
testcase_25 AC 334 ms
51,668 KB
testcase_26 AC 388 ms
52,896 KB
testcase_27 AC 326 ms
51,996 KB
testcase_28 AC 381 ms
52,072 KB
testcase_29 AC 356 ms
51,484 KB
testcase_30 AC 353 ms
52,392 KB
testcase_31 AC 356 ms
51,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    long[] a = new long[n];
    long[] b = new long[n];
    for(int i = 0; i < n; i++) {
      a[i] = sc.nextLong();
      b[i] = sc.nextLong();
    }
    int med = n / 2;
    ArrayList<Long> list1 = new ArrayList<Long>();
    for(int i = 0; i < (int)Math.pow(2, med + 1); i++) {
      long t = 0;
      for(int j = 0; j <= med; j++) {
        if((i & (1 << j)) != 0) {
          t += a[j];
        } else {
          t -= b[j];
        }
      }
      list1.add(t);
    }
    ArrayList<Long> list2 = new ArrayList<Long>();
    if(n - 2 - med >= 0) {
      for(int i = 0; i < (int)Math.pow(2, n - 1 - med); i++) {
        long t = 0;
        for(int j = 0; j < n - 1 - med; j++) {
          if((i & (1 << j)) != 0) {
            t += a[j + med + 1];
          } else {
            t -= b[j + med + 1];
          }
        }
        list2.add(t);
      }
    } else {
      list2.add((long)0);
    }
    Collections.sort(list2);
    long ans = (long)Math.pow(10, 15);
    for(int i = 0; i < list1.size(); i++) {
      long u = list1.get(i);
      int left = 0;
      int right = list2.size();
      int index = right - 1;
      while(left < right) {
        int med2 = (left + right) / 2;
        if(u + list2.get(med2) >= 0) {
          index = med2;
          right = med2;
        } else {
          left = med2 + 1;
        }
      }
      ans = Math.min(ans, Math.abs(u + list2.get(index)));
      if(index >= 1) ans = Math.min(ans, Math.abs(u + list2.get(index - 1)));
    }
    System.out.println(ans);
  }
}
0