結果

問題 No.771 しおり
ユーザー NacoNaco
提出日時 2019-10-11 15:45:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 764 bytes
コンパイル時間 1,536 ms
コンパイル使用メモリ 169,576 KB
実行使用メモリ 22,036 KB
最終ジャッジ日時 2024-07-22 07:19:46
合計ジャッジ時間 5,124 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
21,752 KB
testcase_01 AC 23 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 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 3 ms
6,940 KB
testcase_09 AC 1 ms
6,944 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,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,948 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 96 ms
14,048 KB
testcase_26 AC 4 ms
6,940 KB
testcase_27 AC 22 ms
6,948 KB
testcase_28 AC 47 ms
8,180 KB
testcase_29 AC 23 ms
6,944 KB
testcase_30 AC 210 ms
21,864 KB
testcase_31 AC 210 ms
21,872 KB
testcase_32 AC 6 ms
6,940 KB
testcase_33 AC 208 ms
21,936 KB
testcase_34 AC 206 ms
21,856 KB
testcase_35 AC 7 ms
6,940 KB
testcase_36 AC 3 ms
6,944 KB
testcase_37 AC 3 ms
6,940 KB
testcase_38 AC 6 ms
6,940 KB
testcase_39 AC 3 ms
6,940 KB
testcase_40 AC 97 ms
13,816 KB
testcase_41 AC 212 ms
21,916 KB
testcase_42 AC 211 ms
21,716 KB
testcase_43 AC 23 ms
6,944 KB
testcase_44 AC 206 ms
22,036 KB
testcase_45 AC 211 ms
21,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int dp[(1<<18)][18];

const int INF=1e9;

int main(){
    int N; cin >> N;
    int a[N],b[N];
    for(int i=0;i<N;i++){
        cin >> a[i] >> b[i];
    }
    for(int i=0;i<(1<<N);i++){
        for(int j=0;j<N;j++){
            dp[i][j]=INF;
        }
    }
    for(int i=0;i<N;i++) dp[1<<i][i]=0;
    for(int mask=0;mask<(1<<N);mask++){
        for(int i=0;i<N;i++){
            if(!mask&(1<<i)) continue;
            for(int j=0;j<N;j++){
                if(mask&(1<<j)) continue;
                dp[mask|(1<<j)][j]=min(dp[mask|(1<<j)][j],max(dp[mask][i],b[i]-a[i]+a[j]));
            }
        }
    }
    int ans=INF;
    for(int i=0;i<N;i++){
        ans=min(ans,dp[(1<<N)-1][i]);
    }
    cout << ans << endl;
}
0