結果

問題 No.3158 Collect Stamps
ユーザー takoyaki782
提出日時 2025-07-15 22:23:53
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 1,386 bytes
コンパイル時間 3,968 ms
コンパイル使用メモリ 255,604 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2025-07-15 22:23:59
合計ジャッジ時間 5,174 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
ll inf_ll = 9223372036854775807;
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
using mint = atcoder::modint998244353;
using mint1 = atcoder::modint1000000007;
using Pa = std::pair<ll, ll>;

int Yes(bool x){
    if(x) cout << "Yes";
    else cout << "No";
    cout << endl;
    return 0;
}

int main(){
    ll N, M, K;
    cin >> N >> M >> K;
    vector<ll> A(K);
    rep(i, K){
        cin >> A[i];
        A[i]--;
    }
    vector<vector<ll>> T(N, vector<ll>(N));
    rep(i, N){
        rep(j, N){
            cin >> T[i][j];
        }
    }
    ll ans = inf_ll;
    rep(i, (1<<N)){
        if(__popcount(i) != M) continue; 
        vector<ll> B;
        rep(j, N){
            if((i >> j) & 1) B.push_back(j);
        }
        do{
            ll x = 0;
            rep(j, M-1){
                x += T[B[j]][B[j+1]];
            }
            ll y = inf_ll;
            rep(j, K){
                chmin(y, T[B[M-1]][A[j]]);
            }
            x += y;
            chmin(ans, x);
        }while(next_permutation(B.begin(), B.end()));
    }
    cout << ans;
}
0