結果

問題 No.771 しおり
ユーザー takenkotaketakenkotake
提出日時 2024-06-30 12:57:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 1,096 bytes
コンパイル時間 2,046 ms
コンパイル使用メモリ 202,520 KB
実行使用メモリ 85,476 KB
最終ジャッジ日時 2024-06-30 12:57:31
合計ジャッジ時間 6,809 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
85,336 KB
testcase_01 AC 49 ms
85,448 KB
testcase_02 AC 24 ms
85,424 KB
testcase_03 AC 24 ms
85,220 KB
testcase_04 AC 24 ms
85,368 KB
testcase_05 AC 25 ms
85,332 KB
testcase_06 AC 24 ms
85,388 KB
testcase_07 AC 24 ms
85,324 KB
testcase_08 AC 27 ms
85,352 KB
testcase_09 AC 24 ms
85,344 KB
testcase_10 AC 24 ms
85,332 KB
testcase_11 AC 23 ms
85,320 KB
testcase_12 AC 24 ms
85,424 KB
testcase_13 AC 24 ms
85,452 KB
testcase_14 AC 29 ms
85,340 KB
testcase_15 AC 24 ms
85,404 KB
testcase_16 AC 26 ms
85,396 KB
testcase_17 AC 27 ms
85,204 KB
testcase_18 AC 24 ms
85,400 KB
testcase_19 AC 25 ms
85,368 KB
testcase_20 AC 24 ms
85,336 KB
testcase_21 AC 24 ms
85,308 KB
testcase_22 AC 25 ms
85,476 KB
testcase_23 AC 26 ms
85,204 KB
testcase_24 AC 27 ms
85,372 KB
testcase_25 AC 115 ms
85,440 KB
testcase_26 AC 32 ms
85,448 KB
testcase_27 AC 50 ms
85,324 KB
testcase_28 AC 70 ms
85,376 KB
testcase_29 AC 49 ms
85,428 KB
testcase_30 AC 207 ms
85,364 KB
testcase_31 AC 206 ms
85,344 KB
testcase_32 AC 35 ms
85,388 KB
testcase_33 AC 207 ms
85,332 KB
testcase_34 AC 207 ms
85,276 KB
testcase_35 AC 35 ms
85,364 KB
testcase_36 AC 30 ms
85,420 KB
testcase_37 AC 29 ms
85,392 KB
testcase_38 AC 34 ms
85,224 KB
testcase_39 AC 29 ms
85,308 KB
testcase_40 AC 114 ms
85,336 KB
testcase_41 AC 207 ms
85,304 KB
testcase_42 AC 209 ms
85,392 KB
testcase_43 AC 49 ms
85,324 KB
testcase_44 AC 209 ms
85,352 KB
testcase_45 AC 209 ms
85,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const long inf = 1e9;

int A[21],B[21];
int dist[20][20];

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

int main(void){
    long long n;
    cin >> n;
    for(int i=0;i<n;i++){
        cin >> A[i] >> B[i];
    }
    for(int i=0;i<n;i++){
        for(int j=0;j<n;j++){
            dist[i][j]=abs(B[i]-A[i])+abs(A[j]);
        }
    }


    for(int i=0;i<(1<<20);i++){
        for(int j=0;j<n;j++){
            dp[i][j]=inf;
        }
    }

    for(int i=0; i<n; i++) dp[1<<i][i] = 0;//1冊目はゼロ
    // 1は選択済み。0はこれから
    for(int msk=0; msk<(1<<n); msk++){
      for(int i=0;i<n;i++){//now
          for(int j=0; j<n; j++){//next
            if((msk & (1<<i))){//now
                if(!(msk & (1<<j))){//next
                  int cost = dist[i][j];
                  dp[msk+(1<<j)][j]= min(dp[msk+(1<<j)][j],max(dp[msk][i],cost));//多い条件を残す
                }
            }
          }
      }
    }
    int ans=inf;
    for(int i=0;i<n;i++){
        ans=min(ans,dp[(1<<n)-1][i]);
    }
    cout <<  ans << endl;

    return 0;
}
0