#include using namespace std; #define rep(i, n) for(int i = 0; i < (int)n; ++i) #define FOR(i, a, b) for(int i = a; i < (int)b; ++i) #define rrep(i, n) for(int i = ((int)n - 1); i >= 0; --i) typedef long long ll; typedef long double ld; const int Inf = 1e9; const double EPS = 1e-9; const int MOD = 1e9 + 7; int main() { cin.tie(nullptr); ios::sync_with_stdio(0); int n, res = Inf; cin >> n; vector > x(n, vector(n)); vector a(n); rep (i, n) { rep (j, n) { int v; cin >> v; if (v) x[i][j] = true; } } rep (i, n) cin >> a[i]; bool all = true; rep (i, n) { rep (j, n) { if (x[i][j]) all = false; } } if (all) { cout << 0 << endl; return 0; } rep (bit, 1 << n) { vector sv; queue s; vector > y(n, vector(n)); vector checked(n); rep (i, n) { if (bit & (1 << i)) { s.push(i); sv.push_back(i); } } while (!s.empty()) { int f = s.front(); s.pop(); rep (i, n) y[i][f] = true; rep (i, n) { if (checked[i]) continue; bool same = true; rep (j, n) { if (x[i][j] && !y[i][j]) same = false; } if (same) { checked[i] = true; s.push(i); } } } bool ok = true; rep (i, n) if (!checked[i]) ok = false; if (ok) { int tmp = 0; rep (i, sv.size()) tmp += a[sv[i]]; res = min(res, tmp); } } cout << res << endl; return 0; }