結果

問題 No.2780 The Bottle Imp
ユーザー テナガザルテナガザル
提出日時 2024-06-08 00:25:59
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 1,913 bytes
コンパイル時間 3,490 ms
コンパイル使用メモリ 99,624 KB
実行使用メモリ 29,476 KB
最終ジャッジ日時 2024-12-27 14:45:55
合計ジャッジ時間 8,050 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 4 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 118 ms
12,544 KB
testcase_08 AC 118 ms
12,672 KB
testcase_09 AC 114 ms
12,544 KB
testcase_10 AC 114 ms
12,672 KB
testcase_11 AC 116 ms
12,672 KB
testcase_12 AC 207 ms
22,684 KB
testcase_13 AC 212 ms
22,940 KB
testcase_14 AC 56 ms
5,760 KB
testcase_15 AC 54 ms
5,760 KB
testcase_16 AC 54 ms
5,632 KB
testcase_17 AC 55 ms
5,760 KB
testcase_18 AC 57 ms
5,760 KB
testcase_19 AC 56 ms
5,760 KB
testcase_20 AC 59 ms
5,760 KB
testcase_21 AC 58 ms
5,632 KB
testcase_22 AC 39 ms
6,016 KB
testcase_23 AC 48 ms
5,760 KB
testcase_24 AC 92 ms
11,008 KB
testcase_25 AC 180 ms
17,424 KB
testcase_26 AC 131 ms
8,320 KB
testcase_27 AC 69 ms
8,832 KB
testcase_28 AC 73 ms
8,832 KB
testcase_29 AC 108 ms
12,032 KB
testcase_30 AC 86 ms
10,880 KB
testcase_31 AC 133 ms
14,260 KB
testcase_32 AC 48 ms
5,248 KB
testcase_33 AC 149 ms
20,132 KB
testcase_34 AC 214 ms
29,476 KB
testcase_35 AC 24 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 3 ms
5,248 KB
testcase_38 AC 28 ms
5,248 KB
testcase_39 AC 71 ms
13,704 KB
testcase_40 AC 73 ms
13,696 KB
testcase_41 AC 72 ms
13,704 KB
testcase_42 AC 3 ms
5,248 KB
testcase_43 AC 3 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<vector<int>> ng(cnt);
  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];
      ng[a].push_back(b);
    }
  }
  check.assign(n, 0);
  topo.clear();
  g = ng;
  for (int i = 0; i < cnt; ++i)
  {
    topologicalsort(topologicalsort, i);
  }
  reverse(topo.begin(), topo.end());
  if (topo[0] != newid[0])
  {
    cout << "No" << endl;
    return 0;
  }
  for (int i = 0; i < topo.size() - 1; ++i)
  {
    int np = topo[i + 1];
    bool flag = true;
    for (int v : ng[topo[i]])
    {
      if (v == np)
      {
        flag = false;
        break;
      }
    }
    if (flag)
    {
      cout << "No" << endl;
      return 0;
    }
  }
  cout << "Yes" << endl;
}
0