結果

問題 No.771 しおり
ユーザー ei1333333ei1333333
提出日時 2018-12-18 23:17:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 201,808 KB
実行使用メモリ 22,044 KB
最終ジャッジ日時 2024-07-22 07:05:24
合計ジャッジ時間 7,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
21,920 KB
testcase_01 AC 29 ms
21,964 KB
testcase_02 AC 7 ms
21,864 KB
testcase_03 AC 7 ms
21,856 KB
testcase_04 AC 7 ms
21,892 KB
testcase_05 AC 7 ms
21,912 KB
testcase_06 AC 8 ms
21,848 KB
testcase_07 AC 7 ms
22,012 KB
testcase_08 AC 7 ms
21,880 KB
testcase_09 AC 7 ms
21,960 KB
testcase_10 AC 7 ms
21,920 KB
testcase_11 AC 7 ms
21,876 KB
testcase_12 AC 7 ms
21,980 KB
testcase_13 AC 7 ms
21,952 KB
testcase_14 AC 7 ms
21,948 KB
testcase_15 AC 8 ms
21,944 KB
testcase_16 AC 8 ms
21,932 KB
testcase_17 AC 7 ms
21,900 KB
testcase_18 AC 7 ms
21,840 KB
testcase_19 AC 8 ms
21,876 KB
testcase_20 AC 7 ms
22,044 KB
testcase_21 AC 7 ms
21,892 KB
testcase_22 AC 8 ms
21,792 KB
testcase_23 AC 8 ms
21,956 KB
testcase_24 AC 7 ms
21,852 KB
testcase_25 AC 135 ms
21,840 KB
testcase_26 AC 9 ms
21,860 KB
testcase_27 AC 29 ms
21,828 KB
testcase_28 AC 58 ms
21,944 KB
testcase_29 AC 29 ms
21,948 KB
testcase_30 AC 320 ms
21,900 KB
testcase_31 AC 323 ms
21,860 KB
testcase_32 AC 12 ms
21,932 KB
testcase_33 AC 320 ms
21,856 KB
testcase_34 AC 320 ms
21,876 KB
testcase_35 AC 11 ms
21,720 KB
testcase_36 AC 8 ms
21,892 KB
testcase_37 AC 9 ms
21,856 KB
testcase_38 AC 12 ms
21,808 KB
testcase_39 AC 8 ms
21,840 KB
testcase_40 AC 136 ms
21,712 KB
testcase_41 AC 312 ms
21,860 KB
testcase_42 AC 319 ms
21,952 KB
testcase_43 AC 30 ms
21,864 KB
testcase_44 AC 319 ms
21,844 KB
testcase_45 AC 306 ms
21,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const int INF = 1 << 30;

int N, A[18], B[18];
int dp[1 << 18][18];

int rec(int bit, int idx) {
  if(bit == (1 << N) - 1) return 0;
  if(~dp[bit][idx]) return dp[bit][idx];
  int ret = INF;
  for(int i = 0; i < N; i++) {
    if((bit >> i) & 1) continue;
    ret = min(ret, max(rec(bit | (1 << i), i), (B[idx] - A[idx]) + A[i]));
  }
  return dp[bit][idx] = ret;
}

int main() {
  cin >> N;
  for(int i = 0; i < N; i++) {
    cin >> A[i] >> B[i];
  }
  memset(dp, -1, sizeof(dp));
  int ret = INF;
  for(int i = 0; i < N; i++) ret = min(ret, rec(1 << i, i));
  cout << ret << endl;
}



0