結果

問題 No.2630 Colorful Vertices and Cheapest Paths
ユーザー haihamabossuhaihamabossu
提出日時 2024-02-16 22:48:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 282 ms / 2,500 ms
コード長 1,176 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 213,620 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-09-28 21:24:34
合計ジャッジ時間 7,098 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
6,816 KB
testcase_01 AC 245 ms
6,820 KB
testcase_02 AC 244 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 114 ms
6,820 KB
testcase_07 AC 214 ms
6,820 KB
testcase_08 AC 195 ms
6,816 KB
testcase_09 AC 214 ms
6,820 KB
testcase_10 AC 281 ms
6,816 KB
testcase_11 AC 280 ms
6,816 KB
testcase_12 AC 280 ms
6,820 KB
testcase_13 AC 279 ms
6,820 KB
testcase_14 AC 282 ms
6,820 KB
testcase_15 AC 262 ms
6,816 KB
testcase_16 AC 264 ms
6,816 KB
testcase_17 AC 263 ms
6,816 KB
testcase_18 AC 120 ms
6,816 KB
testcase_19 AC 174 ms
6,816 KB
testcase_20 AC 152 ms
6,816 KB
testcase_21 AC 200 ms
6,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/dsu>
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

const ll INF = 1e18;
void solve() {
  ll n, m;
  cin >> n >> m;
  vector<pair<ll, ll>> ab(m);
  rep(i, m) {
    ll a, b;
    cin >> a >> b, a--, b--;
    ab[i] = {a, b};
  }
  vector<ll> c(n), w(10);
  rep(i, n) cin >> c[i], c[i]--;
  rep(i, 10) cin >> w[i];
  ll q;
  cin >> q;
  vector<pair<ll, ll>> qs(q);
  rep(qi, q) {
    ll a, b;
    cin >> a >> b, a--, b--;
    qs[qi] = {a, b};
  }
  vector<ll> ans(q, INF);
  rep(S, 1 << 10) {
    ll sumw = 0;
    atcoder::dsu d(n);
    rep(i, 10) if ((S >> i) & 1) sumw += w[i];
    for (const auto &[a, b] : ab) {
      if (!d.same(a, b))
        if ((S >> c[a]) & 1)
          if ((S >> c[b]) & 1)
            d.merge(a, b);
    }
    rep(qi, q) {
      const auto &[u, v] = qs[qi];
      if (d.same(u, v)) {
        ans[qi] = min(ans[qi], sumw);
      }
    }
  }
  rep(qi, q) cout << (ans[qi] == INF ? -1 : ans[qi]) << '\n';
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0