結果

問題 No.771 しおり
ユーザー beetbeet
提出日時 2019-03-23 17:14:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 204,932 KB
実行使用メモリ 40,524 KB
最終ジャッジ日時 2024-07-22 07:12:57
合計ジャッジ時間 5,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
40,388 KB
testcase_01 AC 27 ms
32,456 KB
testcase_02 AC 3 ms
7,624 KB
testcase_03 AC 2 ms
7,624 KB
testcase_04 AC 3 ms
9,668 KB
testcase_05 AC 3 ms
11,844 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
9,548 KB
testcase_08 AC 5 ms
19,916 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 3 ms
9,548 KB
testcase_13 AC 4 ms
11,716 KB
testcase_14 AC 6 ms
21,960 KB
testcase_15 AC 3 ms
7,620 KB
testcase_16 AC 4 ms
13,768 KB
testcase_17 AC 5 ms
17,864 KB
testcase_18 AC 3 ms
9,676 KB
testcase_19 AC 4 ms
13,892 KB
testcase_20 AC 2 ms
7,624 KB
testcase_21 AC 3 ms
9,544 KB
testcase_22 AC 4 ms
13,644 KB
testcase_23 AC 4 ms
15,820 KB
testcase_24 AC 5 ms
17,992 KB
testcase_25 AC 100 ms
37,324 KB
testcase_26 AC 8 ms
26,056 KB
testcase_27 AC 26 ms
32,456 KB
testcase_28 AC 51 ms
34,636 KB
testcase_29 AC 27 ms
32,328 KB
testcase_30 AC 212 ms
40,264 KB
testcase_31 AC 215 ms
40,524 KB
testcase_32 AC 11 ms
28,104 KB
testcase_33 AC 215 ms
40,392 KB
testcase_34 AC 209 ms
40,396 KB
testcase_35 AC 10 ms
28,108 KB
testcase_36 AC 7 ms
24,008 KB
testcase_37 AC 7 ms
24,004 KB
testcase_38 AC 10 ms
28,104 KB
testcase_39 AC 7 ms
24,004 KB
testcase_40 AC 96 ms
37,320 KB
testcase_41 AC 208 ms
40,520 KB
testcase_42 AC 203 ms
40,392 KB
testcase_43 AC 27 ms
32,456 KB
testcase_44 AC 205 ms
40,264 KB
testcase_45 AC 208 ms
40,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
const Int MAX = 18;
const Int INF = 1e5;
Int dp[MAX][1<<MAX];
signed main(){
  Int n;
  cin>>n;
  vector<Int> x(n),y(n);
  for(Int i=0;i<n;i++) cin>>x[i]>>y[i];
  
  Int s=1<<n;
  for(Int b=0;b<s;b++)
    for(Int i=0;i<n;i++)
      dp[i][b]=INF;
  
  for(Int i=0;i<n;i++) dp[i][1<<i]=0;

  for(Int b=0;b<s;b++){
    for(Int i=0;i<n;i++){
      if((~b>>i)&1) continue;
      for(Int j=0;j<n;j++){
        if((b>>j)&1) continue;
        chmin(dp[j][b|(1<<j)],max(dp[i][b],(y[i]-x[i])+x[j]));
      }
    }    
  }
  
  Int ans=dp[0][s-1];
  for(Int i=1;i<n;i++) chmin(ans,dp[i][s-1]);
  cout<<ans<<endl;
  return 0;
}
0