結果

問題 No.2780 The Bottle Imp
ユーザー 👑 emthrmemthrm
提出日時 2024-06-07 21:49:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 2,884 bytes
コンパイル時間 3,266 ms
コンパイル使用メモリ 258,428 KB
実行使用メモリ 32,128 KB
最終ジャッジ日時 2024-06-08 10:29:03
合計ジャッジ時間 5,355 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 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 2 ms
5,376 KB
testcase_07 AC 39 ms
12,544 KB
testcase_08 AC 37 ms
12,672 KB
testcase_09 AC 39 ms
12,672 KB
testcase_10 AC 38 ms
12,672 KB
testcase_11 AC 37 ms
12,672 KB
testcase_12 AC 61 ms
21,328 KB
testcase_13 AC 61 ms
21,248 KB
testcase_14 AC 20 ms
6,656 KB
testcase_15 AC 20 ms
6,528 KB
testcase_16 AC 18 ms
6,528 KB
testcase_17 AC 19 ms
6,656 KB
testcase_18 AC 19 ms
6,528 KB
testcase_19 AC 18 ms
6,528 KB
testcase_20 AC 20 ms
6,656 KB
testcase_21 AC 21 ms
6,656 KB
testcase_22 AC 15 ms
6,656 KB
testcase_23 AC 19 ms
6,784 KB
testcase_24 AC 32 ms
11,136 KB
testcase_25 AC 52 ms
16,640 KB
testcase_26 AC 29 ms
9,472 KB
testcase_27 AC 21 ms
10,880 KB
testcase_28 AC 22 ms
10,880 KB
testcase_29 AC 23 ms
12,672 KB
testcase_30 AC 19 ms
11,392 KB
testcase_31 AC 40 ms
18,816 KB
testcase_32 AC 10 ms
5,376 KB
testcase_33 AC 48 ms
26,624 KB
testcase_34 AC 56 ms
32,128 KB
testcase_35 AC 9 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 9 ms
5,376 KB
testcase_39 AC 36 ms
17,152 KB
testcase_40 AC 36 ms
17,152 KB
testcase_41 AC 33 ms
17,276 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 998244353;
// constexpr int MOD = 1000000007;
constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1};
constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1};
constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U>
inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U>
inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

template <bool IS_FULL_VER = false>
struct StronglyConnectedComponents {
  std::vector<int> id;
  std::vector<std::vector<int>> vertices, g;

  explicit StronglyConnectedComponents(
      const std::vector<std::vector<int>>& graph)
      : n(graph.size()), is_used(n, false), graph(graph), rgraph(n) {
    order.reserve(n);
    for (int i = 0; i < n; ++i) {
      if (!is_used[i]) dfs(i);
    }
    id.assign(n, -1);
    for (int i = 0; i < n; ++i) {
      for (const int e : graph[i]) rgraph[e].emplace_back(i);
    }
    int m = 0;
    for (int i = n - 1; i >= 0; --i) {
      if (id[order[i]] == -1) {
        if constexpr (IS_FULL_VER) vertices.emplace_back();
        rdfs(order[i], m++);
      }
    }
    g.resize(m);
    for (int i = 0; i < n; ++i) {
      for (const int e : graph[i]) {
        if (id[i] != id[e]) g[id[i]].emplace_back(id[e]);
      }
    }
    // if constexpr (IS_FULL_VER) {
    //   for (int i = 0; i < m; ++i) {
    //     std::sort(vertices[i].begin(), vertices[i].end());
    //   }
    // }
  }

 private:
  const int n;
  std::vector<bool> is_used;
  std::vector<int> order;
  std::vector<std::vector<int>> graph, rgraph;

  void dfs(const int ver) {
    is_used[ver] = true;
    for (const int e : graph[ver]) {
      if (!is_used[e]) dfs(e);
    }
    order.emplace_back(ver);
  }

  void rdfs(const int ver, const int m) {
    id[ver] = m;
    if constexpr (IS_FULL_VER) vertices.back().emplace_back(ver);
    for (const int e : rgraph[ver]) {
      if (id[e] == -1) rdfs(e, m);
    }
  }
};

int main() {
  int n; cin >> n;
  vector<vector<int>> graph(n);
  REP(i, n) {
    int m; cin >> m;
    while (m--) {
      int a; cin >> a; --a;
      graph[i].emplace_back(a);
    }
  }
  const StronglyConnectedComponents scc(graph);
  int num = 1;
  for (int i = scc.id[0]; ;) {
    int index = 0;
    while (index < scc.g[i].size() && scc.g[i][index] == i) ++index;
    if (index == scc.g[i].size()) break;
    i = scc.g[i][index];
    ++num;
  }
  cout << (num == scc.g.size() ? "Yes\n" : "No\n");
  return 0;
}
0