結果

問題 No.2780 The Bottle Imp
ユーザー haihamabossuhaihamabossu
提出日時 2024-06-07 22:39:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,012 bytes
コンパイル時間 2,422 ms
コンパイル使用メモリ 224,832 KB
実行使用メモリ 32,196 KB
最終ジャッジ日時 2024-06-08 10:35:27
合計ジャッジ時間 4,755 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 23 ms
9,832 KB
testcase_08 AC 22 ms
9,840 KB
testcase_09 AC 22 ms
9,732 KB
testcase_10 AC 33 ms
10,604 KB
testcase_11 AC 33 ms
10,604 KB
testcase_12 AC 39 ms
15,436 KB
testcase_13 AC 39 ms
15,308 KB
testcase_14 AC 23 ms
7,580 KB
testcase_15 AC 23 ms
7,456 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 23 ms
7,588 KB
testcase_19 AC 23 ms
7,580 KB
testcase_20 AC 23 ms
7,452 KB
testcase_21 WA -
testcase_22 AC 14 ms
6,224 KB
testcase_23 AC 20 ms
7,408 KB
testcase_24 AC 27 ms
9,352 KB
testcase_25 AC 42 ms
12,640 KB
testcase_26 AC 29 ms
9,308 KB
testcase_27 AC 23 ms
8,384 KB
testcase_28 AC 22 ms
8,256 KB
testcase_29 AC 26 ms
12,404 KB
testcase_30 AC 15 ms
8,564 KB
testcase_31 AC 32 ms
12,452 KB
testcase_32 AC 11 ms
5,540 KB
testcase_33 AC 63 ms
31,080 KB
testcase_34 AC 49 ms
32,196 KB
testcase_35 AC 9 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 8 ms
5,376 KB
testcase_39 AC 44 ms
16,816 KB
testcase_40 AC 43 ms
16,820 KB
testcase_41 AC 42 ms
16,816 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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>());
  rep(u, n) {
    ll m;
    cin >> m;
    rep(mi, m) {
      ll v;
      cin >> v, v--;
      g[u].push_back(v);
    }
  }
  atcoder::scc_graph sg(n);
  for (ll v = 1; v < n; v++)
    sg.add_edge(0, v);
  for (ll u = 1; u < n; u++)
    for (const auto v : g[u])
      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