結果
問題 | No.943 取り調べ |
ユーザー | iqueue02 |
提出日時 | 2019-12-06 12:06:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 160 ms / 1,206 ms |
コード長 | 894 bytes |
コンパイル時間 | 1,452 ms |
コンパイル使用メモリ | 171,796 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 09:19:05 |
合計ジャッジ時間 | 3,066 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 121 ms
5,376 KB |
testcase_05 | AC | 151 ms
5,376 KB |
testcase_06 | AC | 145 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 120 ms
5,376 KB |
testcase_09 | AC | 42 ms
5,376 KB |
testcase_10 | AC | 43 ms
5,376 KB |
testcase_11 | AC | 21 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 44 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 41 ms
5,376 KB |
testcase_23 | AC | 160 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (n);i++) #define sz(x) int(x.size()) typedef long long ll; typedef pair<int,int> P; constexpr int INF = 1e9; int main(){ int n; cin >> n; vector<vector<int>> x(n, vector<int>(n)); rep(i,n) rep(j,n) cin >> x[i][j]; vector<int> a(n); rep(i,n) cin >> a[i]; vector<int> ok(n,0); rep(i,n) rep(j,n) if (x[i][j] == 1) ok[i] |= (1 << j); vector<int> dp(1<<n, INF); dp[0] = 0; for (int bit = 0; bit < (1 << n); bit++) { for (int j = 0; j < n; j++) { if (bit & (1 << j)) continue; int key = 0; for (int k = 0; k < n; k++) if (bit & (1 << k) && x[j][k]) key |= (1 << k); if (key == ok[j]) dp[bit | (1 << j)] = min(dp[bit | (1 << j)], dp[bit]); else dp[bit | (1 << j)] = min(dp[bit | (1 << j)], dp[bit] + a[j]); } } cout << dp[(1<<n)-1] << endl; return 0; }