#include #include #include #include #include #include #include #include #include static const int MOD = 1000000007; using ll = long long; using u32 = unsigned; using u64 = unsigned long long; using namespace std; template constexpr T INF = ::numeric_limits::max() / 32 * 15 + 208; template vector make_v(U size, const T& init){ return vector(static_cast(size), init); } template auto make_v(U size, Ts... rest) { return vector(static_cast(size), make_v(rest...)); } template void chmin(T &a, const T &b){ a = (a < b ? a : b); } template void chmax(T &a, const T &b){ a = (a > b ? a : b); } int main() { int n; cin >> n; vector a(n); vector> b(n, vector(n, 0)); for (auto &&i : a) scanf("%d", &i); for (auto &&i : b) for(auto &&j : i) scanf("%d", &j); vector dp(1 << n, -INF); dp[0] = 0; for (int i = 0; i < (1 << n); ++i) { for (int j = 0; j < n; ++j) { if(!(i & (1 << j))){ ll val = dp[i] + a[j]; for (int k = 0; k < n; ++k) { if((i & (1 << k))) val += b[j][k]; } chmax(dp[i^(1 << j)], val); } } } dp[0] = -1; int x = max_element(dp.begin(),dp.end()) - dp.begin(); cout << dp[x] << "\n"; vector ans; for (int i = 0; i < n; ++i) { if(x & (1 << i)) ans.emplace_back(i+1); } for (int i = 0; i < ans.size(); ++i) { if(i) printf(" "); printf("%d",ans[i]); } puts(""); return 0; }