結果

問題 No.2780 The Bottle Imp
ユーザー テナガザルテナガザル
提出日時 2024-06-08 00:07:52
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,720 bytes
コンパイル時間 1,144 ms
コンパイル使用メモリ 95,104 KB
実行使用メモリ 24,744 KB
最終ジャッジ日時 2024-12-27 14:45:42
合計ジャッジ時間 4,256 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 56 ms
9,088 KB
testcase_08 AC 54 ms
9,216 KB
testcase_09 AC 55 ms
9,088 KB
testcase_10 AC 56 ms
9,088 KB
testcase_11 AC 53 ms
8,960 KB
testcase_12 AC 82 ms
13,724 KB
testcase_13 AC 86 ms
13,596 KB
testcase_14 AC 42 ms
5,760 KB
testcase_15 AC 43 ms
5,760 KB
testcase_16 AC 44 ms
5,760 KB
testcase_17 AC 43 ms
5,760 KB
testcase_18 AC 45 ms
5,760 KB
testcase_19 AC 45 ms
5,760 KB
testcase_20 AC 42 ms
5,760 KB
testcase_21 AC 43 ms
5,760 KB
testcase_22 AC 23 ms
5,504 KB
testcase_23 AC 35 ms
5,760 KB
testcase_24 AC 43 ms
8,192 KB
testcase_25 AC 68 ms
11,152 KB
testcase_26 AC 44 ms
7,552 KB
testcase_27 AC 35 ms
8,832 KB
testcase_28 AC 35 ms
8,832 KB
testcase_29 AC 35 ms
9,216 KB
testcase_30 AC 38 ms
9,216 KB
testcase_31 AC 63 ms
14,264 KB
testcase_32 AC 23 ms
5,248 KB
testcase_33 AC 75 ms
20,132 KB
testcase_34 AC 110 ms
24,744 KB
testcase_35 AC 19 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 20 ms
5,248 KB
testcase_39 AC 61 ms
13,708 KB
testcase_40 AC 58 ms
13,580 KB
testcase_41 AC 59 ms
13,704 KB
testcase_42 WA -
testcase_43 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
#include <algorithm>

using namespace std;

int main()
{
  int n, m;
  cin >> n;
  vector<vector<int>> g(n), gr(n);
  for (int i = 0; i < n; ++i)
  {
    int m;
    cin >> m;
    for (int j = 0; j < m; ++j)
    {
      int v;
      cin >> v;
      --v;
      g[i].push_back(v);
      gr[v].push_back(i);
    }
  }
  vector<int> check(n), topo;
  auto topologicalsort = [&](auto f, int now) -> void
  {
    if (check[now]) return;
    check[now] = 1;
    for (auto v : g[now]) f(f, v);
    topo.push_back(now);
  };
  for (int i = 0; i < n; ++i) topologicalsort(topologicalsort, i);
  reverse(topo.begin(), topo.end());
  vector<int> tmp;
  auto dfs = [&](auto f, int now) -> void
  {
    if (check[now] == 0) return;
    tmp.push_back(now);
    check[now] = 0;
    for (int v : gr[now]) f(f, v);
  };
  vector<int> newid(n);
  int cnt = 0;
  for (int v : topo)
  {
    if (check[v] == 0) continue;
    tmp.clear();
    dfs(dfs, v);
    for (auto v1 : tmp) newid[v1] = cnt;
    ++cnt;
  }
  set<pair<int, int>> st;
  vector<int> np(cnt, -1);
  for (int i = 0; i < n; ++i)
  {
    for (auto v : g[i])
    {
      if (newid[i] == newid[v] || st.find({newid[i], newid[v]}) != st.end()) continue;
      st.insert({newid[i], newid[v]});
      int a = newid[i], b = newid[v];
      if (np[a] != -1)
      {
        cout << "No" << endl;
        return 0;
      }
      np[a] = b;
    }
  }
  vector<int> ncheck(cnt, 1);
  int now = newid[0];
  ncheck[now] = 0;
  while (np[now] != -1)
  {
    now = np[now];
    ncheck[now] = 0;
  }
  for (int i = 0; i < cnt; ++i)
  {
    if (ncheck[i])
    {
      cout << "No" << endl;
      return 0;
    }
  }
  cout << "Yes" << endl;
}
0