結果

問題 No.2630 Colorful Vertices and Cheapest Paths
ユーザー t98slidert98slider
提出日時 2024-06-02 20:35:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 337 ms / 2,500 ms
コード長 1,364 bytes
コンパイル時間 4,228 ms
コンパイル使用メモリ 267,488 KB
実行使用メモリ 43,648 KB
最終ジャッジ日時 2024-06-02 20:35:15
合計ジャッジ時間 10,274 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
12,672 KB
testcase_01 AC 251 ms
23,552 KB
testcase_02 AC 309 ms
39,808 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 52 ms
8,448 KB
testcase_07 AC 230 ms
43,008 KB
testcase_08 AC 214 ms
38,528 KB
testcase_09 AC 267 ms
43,520 KB
testcase_10 AC 314 ms
43,520 KB
testcase_11 AC 317 ms
43,648 KB
testcase_12 AC 310 ms
43,648 KB
testcase_13 AC 337 ms
43,520 KB
testcase_14 AC 308 ms
43,520 KB
testcase_15 AC 99 ms
5,376 KB
testcase_16 AC 98 ms
5,376 KB
testcase_17 AC 102 ms
5,376 KB
testcase_18 AC 71 ms
14,848 KB
testcase_19 AC 157 ms
34,304 KB
testcase_20 AC 159 ms
28,672 KB
testcase_21 AC 191 ms
43,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;

template<class T> istream& operator >> (istream& is, vector<T>& vec) {
    for(T& x : vec) is >> x;
    return is;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m, Q;
    cin >> n >> m;
    vector uf(1024, atcoder::dsu(n));
    vector<pair<int,int>> E(m);
    vector<int> c(n), W(10);
    vector<ll> sv(1024);
    for(auto &&[u, v] : E){
        cin >> u >> v;
        u--, v--;
    }
    cin >> c >> W;
    for(auto &&v : c) v--;
    for(int S = 1; S < 1024; S++){
        for(int i = 0; i < 10; i++){
            if(S >> i & 1) sv[S] += W[i];
        }
        for(auto &&[u, v] : E){
            if((S >> c[u] & 1) && (S >> c[v] & 1)) uf[S].merge(u, v);
        }
    }
    cin >> Q;
    while(Q--){
        int u, v;
        cin >> u >> v;
        u--, v--;
        if(!uf[1023].same(u, v)){
            cout << -1 << '\n';
            continue;
        }
        int T = (1 << c[u]) | (1 << c[v]);
        int U = 1023 ^ T;
        ll ans = 1ll << 60;
        if(uf[T].same(u, v)){
            cout << sv[T] << '\n';
            continue;
        }
        for(int S = U; S > 0; S = (S - 1) & U){
            if(uf[S | T].same(u, v)){
                ans = min(ans, sv[S | T]);
            }
        }
        cout << ans << '\n';
    }
}
0