結果

問題 No.357 品物の並び替え (Middle)
ユーザー takenkotaketakenkotake
提出日時 2024-06-23 22:13:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 7 ms / 5,000 ms
コード長 736 bytes
コンパイル時間 2,231 ms
コンパイル使用メモリ 206,012 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 22:13:07
合計ジャッジ時間 3,369 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 7 ms
6,940 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 5 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const long long inf=1e17;
int A[21];
int dp[1 << 21];

int main(void){
    long long n,m;
    cin >> n >> m;
    vector<vector<int>> a(n,vector<int>(n,0));
    for(int i=0;i<m;i++){
        int u,v,c;
        cin >> u >> v >> c;
        a[u][v] = c;
    }

    dp[0]=0;
    // 1は選択済み。0はこれから
    for(int msk=0; msk<(1<<n); msk++){
      for(int j=0; j<n; j++){
        if(!(msk & (1<<j))){//まだ選択してない
          int total = 0;
          for(int i=0;i<n;i++){
            if(msk & (1<<i)) total += a[j][i];
          }
          dp[msk+(1<<j)]= max(dp[msk+(1<<j)],dp[msk]+total);
        }
      }
    }

    cout << dp[(1<<n)-1] << endl;
    return 0;
}
0