結果

問題 No.1194 Replace
ユーザー risujirohrisujiroh
提出日時 2020-08-22 15:10:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 1,441 bytes
コンパイル時間 3,327 ms
コンパイル使用メモリ 276,232 KB
実行使用メモリ 145,136 KB
最終ジャッジ日時 2024-10-15 09:28:01
合計ジャッジ時間 8,939 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 199 ms
80,816 KB
testcase_01 AC 213 ms
86,272 KB
testcase_02 AC 149 ms
38,988 KB
testcase_03 AC 146 ms
102,408 KB
testcase_04 AC 202 ms
89,604 KB
testcase_05 AC 186 ms
82,300 KB
testcase_06 AC 156 ms
28,820 KB
testcase_07 AC 241 ms
72,948 KB
testcase_08 AC 234 ms
63,936 KB
testcase_09 AC 254 ms
120,260 KB
testcase_10 AC 251 ms
99,756 KB
testcase_11 AC 255 ms
133,316 KB
testcase_12 AC 262 ms
145,136 KB
testcase_13 AC 170 ms
15,020 KB
testcase_14 AC 148 ms
13,552 KB
testcase_15 AC 112 ms
11,812 KB
testcase_16 AC 161 ms
14,696 KB
testcase_17 AC 105 ms
11,224 KB
testcase_18 AC 108 ms
11,884 KB
testcase_19 AC 159 ms
14,480 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 44 ms
6,936 KB
testcase_24 AC 14 ms
5,248 KB
testcase_25 AC 8 ms
5,248 KB
testcase_26 AC 61 ms
8,112 KB
testcase_27 AC 13 ms
5,248 KB
testcase_28 AC 29 ms
5,632 KB
testcase_29 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/extc++.h>

#ifndef DUMP
#define DUMP(...) (void)0
#endif

using namespace std;

struct graph {
  struct edge {
    int src, dst;
    int operator-(int v) const { return src ^ dst ^ v; }
  };
  int n, m;
  vector<edge> edges;
  vector<vector<pair<int, int>>> adj;
  graph(int _n = 0) : n(_n), m(0), adj(n) {}
  int add(const edge& e, bool directed = false) {
    edges.push_back(e);
    adj[e.src].emplace_back(m, e.dst);
    if (not directed) adj[e.dst].emplace_back(m, e.src);
    return m++;
  }
};

int main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  int n, m;
  cin >> n >> m;
  vector<int> b(m), c(m);
  for (int i = 0; i < m; ++i) {
    cin >> b[i] >> c[i];
  }
  auto x = b;
  x.insert(end(x), begin(c), end(c));
  sort(begin(x), end(x));
  x.erase(unique(begin(x), end(x)), end(x));
  graph g(size(x));
  for (int i = 0; i < m; ++i) {
    b[i] = lower_bound(begin(x), end(x), b[i]) - begin(x);
    c[i] = lower_bound(begin(x), end(x), c[i]) - begin(x);
    g.add({c[i], b[i]}, true);
  }
  auto res = (int64_t)n * (n + 1) / 2;
  vector<bool> vis(n);
  for (int s = g.n; s--;) {
    if (vis[s]) continue;
    auto dfs = [&](auto&& self, int v) -> void {
      res += x[s] - x[v];
      vis[v] = true;
      for (auto [id, u] : g.adj[v]) {
        if (vis[u]) continue;
        self(self, u);
      }
    };
    dfs(dfs, s);
  }
  cout << res << '\n';
}
0