結果

問題 No.771 しおり
ユーザー 0w10w1
提出日時 2018-12-31 02:43:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 2,415 ms
コンパイル使用メモリ 207,604 KB
実行使用メモリ 29,892 KB
最終ジャッジ日時 2024-07-22 07:08:50
合計ジャッジ時間 6,746 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 248 ms
29,880 KB
testcase_01 AC 26 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 115 ms
16,360 KB
testcase_26 AC 4 ms
6,940 KB
testcase_27 AC 26 ms
6,940 KB
testcase_28 AC 54 ms
9,856 KB
testcase_29 AC 26 ms
6,944 KB
testcase_30 AC 249 ms
29,836 KB
testcase_31 AC 250 ms
29,860 KB
testcase_32 AC 7 ms
6,944 KB
testcase_33 AC 245 ms
29,860 KB
testcase_34 AC 241 ms
29,892 KB
testcase_35 AC 6 ms
6,940 KB
testcase_36 AC 3 ms
6,944 KB
testcase_37 AC 3 ms
6,944 KB
testcase_38 AC 7 ms
6,940 KB
testcase_39 AC 3 ms
6,940 KB
testcase_40 AC 113 ms
16,500 KB
testcase_41 AC 249 ms
29,800 KB
testcase_42 AC 247 ms
29,760 KB
testcase_43 AC 26 ms
6,940 KB
testcase_44 AC 247 ms
29,844 KB
testcase_45 AC 247 ms
29,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

signed main() {
  ios::sync_with_stdio(false);
  
  int N;
  cin >> N;
  
  vector<int> A(N), B(N);
  for (int i = 0; i < N; ++i) {
    cin >> A[i] >> B[i];
  }

  vector<vector<int>> dp(1 << N, vector<int>(N, 0x3f3f3f3f));
  for (int i = 0; i < N; ++i) dp[1 << i][i] = 0;
  for (int s = 1; s + 1 < 1 << N; ++s) {
    for (int i = 0; i < N; ++i) {
      if (~s >> i & 1) continue;
      for (int j = 0; j < N; ++j) {
        if (i == j) continue;
        if (s >> j & 1) continue;
        dp[s | 1 << j][j] = min(dp[s | 1 << j][j], max(dp[s][i], B[i] - A[i] + A[j]));
      }
    }
  }

  cout << *min_element(dp.back().begin(), dp.back().end()) << endl;

  return 0;
}
0