結果

問題 No.1284 Flip Game
ユーザー yamakeyamake
提出日時 2020-11-07 13:42:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 1,291 bytes
コンパイル時間 828 ms
コンパイル使用メモリ 90,692 KB
実行使用メモリ 30,208 KB
最終ジャッジ日時 2024-07-22 14:29:33
合計ジャッジ時間 2,694 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 2 ms
6,948 KB
testcase_04 AC 2 ms
6,944 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 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 3 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 7 ms
6,948 KB
testcase_16 AC 6 ms
6,940 KB
testcase_17 AC 28 ms
10,112 KB
testcase_18 AC 28 ms
10,112 KB
testcase_19 AC 143 ms
30,208 KB
testcase_20 AC 29 ms
9,984 KB
testcase_21 AC 28 ms
10,112 KB
testcase_22 AC 28 ms
10,112 KB
testcase_23 AC 143 ms
30,208 KB
testcase_24 AC 143 ms
30,080 KB
testcase_25 AC 141 ms
30,208 KB
testcase_26 AC 142 ms
30,080 KB
testcase_27 AC 142 ms
30,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<string>
#include<queue>
#include<cmath>
#include<cstdio>
#include<tuple>
#include<bitset>
#include<map>

using namespace std;
#define int long long
#define rep(i,n) for(int i=0;i<n;++i)
#define rep1(i,n) for(int i=1;i<=n;++i)
#define ALL(x) x.begin(),x.end()
#define debug(output) cout<<#output<<"= "<<output<<endl

using P=pair<int,int>;
using lint=long long;
using ll=long long;
const lint inf=1e18+7;
const int MOD=1000000007;
signed main(){
  int n;cin>>n;
  vector<vector<int>> cost(n,vector<int>(n,0));
  rep(i,n){
    rep(j,n)cin>>cost[i][j];
  }
  vector<vector<vector<int>>> dp((1<<n),vector<vector<int>>((1<<n),vector<int>(n,inf)));
  rep(i,n){
    dp[0][1<<i][i]=0;
  }
  rep(visited,(1<<n)){
    rep(bit,(1<<n)){
      rep(last,n){
        rep(i,n){
          if(bit&(1<<i))continue;
          int nxtBit=bit;
          int nxtVisited=visited;
          nxtVisited|=(1<<last);
          if(!(visited&(1<<last)))nxtBit=nxtBit^(1<<last);
          nxtBit|=(1<<i);
          dp[nxtVisited][nxtBit][i]=min(dp[nxtVisited][nxtBit][i],dp[visited][bit][last]+cost[last][i]);
        }
      }
    }
  }
  lint res=inf;
  rep(i,n){
    rep(bit,(1<<n))res=min(res,dp[bit][(1<<n)-1][i]);
  }
  cout<<res<<"\n";
  return 0;
}
0