結果

問題 No.2780 The Bottle Imp
ユーザー haihamabossuhaihamabossu
提出日時 2024-06-07 22:45:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 901 bytes
コンパイル時間 2,376 ms
コンパイル使用メモリ 224,396 KB
実行使用メモリ 31,248 KB
最終ジャッジ日時 2024-06-08 10:35:51
合計ジャッジ時間 4,784 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 24 ms
9,528 KB
testcase_08 AC 23 ms
9,536 KB
testcase_09 AC 23 ms
9,408 KB
testcase_10 AC 23 ms
9,536 KB
testcase_11 AC 21 ms
9,532 KB
testcase_12 AC 36 ms
14,716 KB
testcase_13 AC 36 ms
14,708 KB
testcase_14 AC 23 ms
7,412 KB
testcase_15 AC 23 ms
7,420 KB
testcase_16 AC 14 ms
7,284 KB
testcase_17 AC 14 ms
7,412 KB
testcase_18 AC 23 ms
7,416 KB
testcase_19 AC 22 ms
7,420 KB
testcase_20 AC 22 ms
7,284 KB
testcase_21 AC 14 ms
7,288 KB
testcase_22 AC 9 ms
5,664 KB
testcase_23 AC 13 ms
7,052 KB
testcase_24 AC 19 ms
8,468 KB
testcase_25 AC 29 ms
11,764 KB
testcase_26 AC 17 ms
8,420 KB
testcase_27 AC 22 ms
8,384 KB
testcase_28 AC 23 ms
8,384 KB
testcase_29 AC 24 ms
12,052 KB
testcase_30 AC 13 ms
8,212 KB
testcase_31 AC 30 ms
11,300 KB
testcase_32 AC 11 ms
5,612 KB
testcase_33 AC 60 ms
30,300 KB
testcase_34 AC 48 ms
31,248 KB
testcase_35 AC 9 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 8 ms
5,376 KB
testcase_39 AC 43 ms
16,460 KB
testcase_40 AC 42 ms
16,532 KB
testcase_41 AC 41 ms
16,532 KB
testcase_42 AC 1 ms
5,376 KB
testcase_43 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void solve() {
  ll n;
  cin >> n;
  vector g(n, vector<ll>());
  atcoder::scc_graph sg(n);
  rep(u, n) {
    ll m;
    cin >> m;
    rep(mi, m) {
      ll v;
      cin >> v, v--;
      g[u].push_back(v);
      sg.add_edge(u, v);
    }
  }
  auto res = sg.scc();
  bool ok = true;
  set<ll> st = {0};
  for (const auto &now : res) {
    bool found = false;
    set<ll> nex;
    for (const auto u : now) {
      found |= st.count(u);
      for (const auto v : g[u])
        nex.insert(v);
    }
    ok &= found;
    if (!ok)
      break;
    swap(st, nex);
  }
  cout << (ok ? "Yes" : "No") << '\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