結果

問題 No.771 しおり
ユーザー pionepione
提出日時 2020-06-13 19:16:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 2,611 bytes
コンパイル時間 1,904 ms
コンパイル使用メモリ 172,984 KB
実行使用メモリ 44,544 KB
最終ジャッジ日時 2024-07-22 07:23:49
合計ジャッジ時間 7,021 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
44,288 KB
testcase_01 AC 35 ms
8,448 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 154 ms
24,064 KB
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 33 ms
8,704 KB
testcase_28 AC 74 ms
13,696 KB
testcase_29 AC 36 ms
8,448 KB
testcase_30 AC 337 ms
44,416 KB
testcase_31 AC 340 ms
44,288 KB
testcase_32 AC 9 ms
5,376 KB
testcase_33 AC 336 ms
44,416 KB
testcase_34 AC 321 ms
44,288 KB
testcase_35 AC 9 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 9 ms
5,376 KB
testcase_39 AC 4 ms
5,376 KB
testcase_40 AC 144 ms
23,936 KB
testcase_41 AC 325 ms
44,416 KB
testcase_42 AC 328 ms
44,544 KB
testcase_43 AC 36 ms
8,576 KB
testcase_44 AC 327 ms
44,288 KB
testcase_45 AC 320 ms
44,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

// #define int long long
#define rep(i, n) for (long long i = (long long)(0); i < (long long)(n); ++i)
#define reps(i, n) for (long long i = (long long)(1); i <= (long long)(n); ++i)
#define rrep(i, n) for (long long i = ((long long)(n)-1); i >= 0; i--)
#define rreps(i, n) for (long long i = ((long long)(n)); i > 0; i--)
#define irep(i, m, n) for (long long i = (long long)(m); i < (long long)(n); ++i)
#define ireps(i, m, n) for (long long i = (long long)(m); i <= (long long)(n); ++i)
#define SORT(v, n) sort(v, v + n);
#define REVERSE(v, n) reverse(v, v+n);
#define vsort(v) sort(v.begin(), v.end());
#define all(v) v.begin(), v.end()
#define mp(n, m) make_pair(n, m);
#define cout(d) cout<<d<<endl;
#define coutd(d) cout<<std::setprecision(10)<<d<<endl;
#define cinline(n) getline(cin,n);
#define replace_all(s, b, a) replace(s.begin(),s.end(), b, a);
#define PI (acos(-1))
#define FILL(v, n, x) fill(v, v + n, x);
#define sz(x) long long(x.size())

using ll = long long;
using vi = vector<int>;
using vvi = vector<vi>;
using vll = vector<ll>;
using vvll = vector<vll>;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using vs = vector<string>;
using vpll = vector<pair<ll, ll>>;
using vtp = vector<tuple<ll,ll,ll>>;
using vb = vector<bool>;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

const ll INF = 1e9;
const ll MOD = 1e9+7;
const ll LINF = 1e18;

ll dp[1001001][20]; // 集合sは既に並んでいて、最後がiであるときのしおり間距離の最大

ll bitcount(ll x){
  if(x==0) return 0;
  return bitcount(x>>1)+(x&1);
}

string to_binary(ll n, int digit = 0) {
  string res = "";
  while (n) {
    if (n & 1) res = "1" + res;
    else res = "0" + res;
    n >>= 1;
  }
  if (0 < digit) {
    int n = digit - res.length();
    rep(i, n) res = "0" + res;
  }
  return res;
}

signed main()
{
  cin.tie( 0 ); ios::sync_with_stdio( false );
  
  ll n; cin>>n;
  vpll p(n);
  rep(i,n){
    ll a,b; cin>>a>>b;
    p[i]={a,b};
  }
  
  rep(s,1<<n) rep(i,n) dp[s][i]=LINF;
  rep(i,n) dp[1<<i][i]=0;
  
  irep(s,1,1<<n){
    rep(i,n) rep(j,n){
      if(i==j) continue;
      if((s>>i&1)==0) continue;
      if((s>>j&1)) continue;
      
      ll d=(p[i].second-p[i].first)+p[j].first;
      chmin(dp[s|(1<<j)][j],max(dp[s][i],d));
      // cout<<to_binary(s,3)<<' '<<i<<' '<<j<<' '<<dp[s|(1<<j)][j]<<endl;
    }
  }
  
  ll ans=LINF;
  rep(i,n) chmin(ans,dp[(1<<n)-1][i]);
  
  cout<<ans<<endl;
  
}
0