結果

問題 No.1911 Alternately Coloring
ユーザー SSRSSSRS
提出日時 2022-04-22 21:45:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 564 ms / 4,000 ms
コード長 2,003 bytes
コンパイル時間 2,403 ms
コンパイル使用メモリ 223,408 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-24 02:52:14
合計ジャッジ時間 11,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,948 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 476 ms
6,944 KB
testcase_07 AC 481 ms
6,940 KB
testcase_08 AC 385 ms
6,944 KB
testcase_09 AC 500 ms
6,944 KB
testcase_10 AC 426 ms
6,940 KB
testcase_11 AC 340 ms
6,940 KB
testcase_12 AC 430 ms
6,944 KB
testcase_13 AC 352 ms
6,944 KB
testcase_14 AC 290 ms
6,944 KB
testcase_15 AC 376 ms
6,940 KB
testcase_16 AC 369 ms
6,944 KB
testcase_17 AC 370 ms
6,944 KB
testcase_18 AC 218 ms
6,940 KB
testcase_19 AC 248 ms
6,940 KB
testcase_20 AC 284 ms
6,940 KB
testcase_21 AC 138 ms
6,940 KB
testcase_22 AC 545 ms
6,940 KB
testcase_23 AC 564 ms
6,944 KB
testcase_24 AC 231 ms
6,940 KB
testcase_25 AC 244 ms
6,940 KB
testcase_26 AC 287 ms
6,940 KB
testcase_27 AC 309 ms
6,944 KB
testcase_28 AC 79 ms
6,940 KB
testcase_29 AC 213 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, M;
  cin >> N >> M;
  vector<vector<int>> E(N);
  for (int i = 0; i < M; i++){
    int u, v;
    cin >> u >> v;
    u--;
    v--;
    E[u].push_back(v);
    E[v].push_back(u);
  }
  vector<int> R(N);
  for (int i = 0; i < N; i++){
    cin >> R[i];
  }
  vector<int> B(N);
  for (int i = 0; i < N; i++){
    cin >> B[i];
  }
  long long sum = 0;
  for (int i = 0; i < N; i++){
    sum += max(R[i], B[i]);
  }
  long long ans = 0;
  for (int i = 0; i < 2; i++){
    for (int j = 0; j < N; j++){
      vector<vector<long long>> d(2, vector<long long>(N, -1));
      priority_queue<tuple<long long, int, int>, vector<tuple<long long, int, int>>, greater<tuple<long long, int, int>>> pq;
      pq.push(make_tuple(0, i, j));
      while (!pq.empty()){
        long long c = get<0>(pq.top());
        int t = get<1>(pq.top());
        int v = get<2>(pq.top());
        pq.pop();
        if (d[t][v] == -1){
          d[t][v] = c;
          for (int w : E[v]){
            if (d[1 - t][w] == -1){
              if (t == 0){
                pq.push(make_tuple(c + max(R[v], B[v]) - R[v], 1 - t, w));
              }
              if (t == 1){
                pq.push(make_tuple(c + max(R[v], B[v]) - B[v], 1 - t, w));
              }
            }
          }
        }
      }
      if (d[1 - i][j] != -1){
        ans = max(ans, sum - d[1 - i][j]);
      }
    }
  }
  if (ans != 0){
    cout << ans << endl;
  } else {
    vector<int> c(N, -1);
    c[0] = 0;
    queue<int> Q;
    Q.push(0);
    while (!Q.empty()){
      int v = Q.front();
      Q.pop();
      for (int w : E[v]){
        if (c[w] == -1){
          c[w] = 1 - c[v];
          Q.push(w);
        }
      }
    }
    long long ans1 = 0, ans2 = 0;
    for (int i = 0; i < N; i++){
      if (c[i] == 0){
        ans1 += R[i];
        ans2 += B[i];
      }
      if (c[i] == 1){
        ans1 += B[i];
        ans2 += R[i];
      }
    }
    cout << max(ans1, ans2) << endl;
  }
}
0