結果

提出番号 1622
提出者 hamayanhamayan
言語 C++
提出日時 2018-08-04 13:17:41
問題名 (70)アルゴリズムのお勉強
結果 AC
点数 100%

テストケース

テストケース 結果 得点 実行時間 メモリ使用量
1 AC 100% 1ms 8288KB
2 AC 100% 2ms 7536KB
3 AC 100% 2ms 7792KB
4 AC 100% 2ms 8400KB
5 AC 100% 2ms 8448KB
6 AC 100% 2ms 8352KB
7 AC 100% 2ms 7776KB
8 AC 100% 2ms 8432KB
9 AC 100% 2ms 8048KB
10 AC 100% 2ms 8432KB
11 AC 100% 2ms 7616KB
12 AC 100% 2ms 7824KB
13 AC 100% 2ms 8352KB
14 AC 100% 2ms 7792KB
15 AC 100% 2ms 8704KB
16 AC 100% 1ms 7920KB
17 AC 100% 2ms 8272KB
18 AC 100% 2ms 8416KB
19 AC 100% 2ms 7248KB
20 AC 100% 2ms 8080KB
21 AC 100% 2ms 8112KB
22 AC 100% 3ms 7824KB
23 AC 100% 2ms 8192KB
24 AC 100% 4ms 7648KB
25 AC 100% 2ms 7248KB
26 AC 100% 3ms 8416KB
27 AC 100% 4ms 8416KB
28 AC 100% 2ms 7808KB
29 AC 100% 12ms 8192KB
30 AC 100% 3ms 8384KB

ソースコード

#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define fore(i,a) for(auto &i:a)
#define all(x) (x).begin(),(x).end()
#pragma GCC optimize ("-O3")
using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); }
typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a = b; return 1; } return 0; }
//---------------------------------------------------------------------------------------------------
/*---------------------------------------------------------------------------------------------------
            ∧_∧  
      ∧_∧  (´<_` )  Welcome to My Coding Space!
     ( ´_ゝ`) /  ⌒i     
    /   \     | |     
    /   / ̄ ̄ ̄ ̄/  |  
  __(__ニつ/     _/ .| .|____  
     \/____/ (u ⊃  
---------------------------------------------------------------------------------------------------*/




int N, T[16], A[16][16], dp[1<<16];
//---------------------------------------------------------------------------------------------------
void _main() {
    cin >> N;
    rep(i, 0, N) cin >> T[i];
    rep(i, 0, N) rep(j, 0, N) cin >> A[i][j];

    rep(msk, 0, 1 << N) dp[msk] = inf;
    dp[0] = 0;

    rep(msk, 0, 1 << N) rep(i, 0, N) if (!(msk & (1 << i))) {
        int t = T[i];
        rep(j, 0, N) if (msk & (1 << j)) t -= A[j][i];
        chmin(dp[msk + (1 << i)], dp[msk] + t);
    }
    cout << dp[(1 << N) - 1] << endl;
}