結果

問題 No.771 しおり
ユーザー ngtkanangtkana
提出日時 2020-03-31 00:31:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 949 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 207,052 KB
実行使用メモリ 50,356 KB
最終ジャッジ日時 2024-07-22 07:22:10
合計ジャッジ時間 7,466 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
50,328 KB
testcase_01 AC 31 ms
8,064 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,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 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,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 143 ms
24,704 KB
testcase_26 AC 5 ms
6,944 KB
testcase_27 AC 32 ms
8,064 KB
testcase_28 AC 69 ms
13,952 KB
testcase_29 AC 32 ms
8,064 KB
testcase_30 AC 320 ms
50,296 KB
testcase_31 AC 325 ms
50,296 KB
testcase_32 AC 8 ms
6,940 KB
testcase_33 AC 321 ms
50,316 KB
testcase_34 AC 321 ms
50,176 KB
testcase_35 AC 8 ms
6,940 KB
testcase_36 AC 3 ms
6,940 KB
testcase_37 AC 3 ms
6,940 KB
testcase_38 AC 9 ms
6,944 KB
testcase_39 AC 4 ms
6,944 KB
testcase_40 AC 139 ms
24,704 KB
testcase_41 AC 318 ms
50,276 KB
testcase_42 AC 307 ms
50,356 KB
testcase_43 AC 33 ms
8,064 KB
testcase_44 AC 314 ms
50,336 KB
testcase_45 AC 324 ms
50,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using lint=long long;
using real=long double;
void cmn(lint&x,lint y){if(x>y)x=y;}
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    std::cout.setf(std::ios_base::fixed);std::cout.precision(15);
    lint n;std::cin>>n;
    lint N=1ll<<n;
    std::vector<lint>a(n),b(n);
    for(lint i=0;i<n;i++){
        std::cin>>a.at(i)>>b.at(i);
        b.at(i)-=a.at(i);
    }
    lint inf=std::numeric_limits<lint>::max();
    std::vector<std::vector<lint>>dp(N,std::vector<lint>(n,inf));
    for(lint i=0;i<n;i++)dp.at(1ll<<i).at(i)=0;
    for(lint bs=1;bs<1<<n;bs++){
        for(lint i=0;i<n;i++){
            if(!(bs>>i&1))continue;
            for(lint j=0;j<n;j++){
                if(bs>>j&1)continue;
                cmn(dp.at(bs|1ll<<j).at(j),std::max(dp.at(bs).at(i),b.at(i)+a.at(j)));
            }
        }
    }
    std::cout<<*std::min_element(dp.at(N-1).begin(),dp.at(N-1).end())<<'\n';
}
0