結果

問題 No.2780 The Bottle Imp
ユーザー 矢澤式WINTER矢澤式WINTER
提出日時 2024-06-07 22:55:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,452 bytes
コンパイル時間 6,541 ms
コンパイル使用メモリ 317,036 KB
実行使用メモリ 27,032 KB
最終ジャッジ日時 2024-06-08 10:36:43
合計ジャッジ時間 7,649 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,812 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 17 ms
6,940 KB
testcase_08 AC 17 ms
6,944 KB
testcase_09 AC 17 ms
6,940 KB
testcase_10 AC 16 ms
6,940 KB
testcase_11 AC 16 ms
6,940 KB
testcase_12 AC 24 ms
7,192 KB
testcase_13 AC 24 ms
7,068 KB
testcase_14 AC 17 ms
6,944 KB
testcase_15 AC 16 ms
6,944 KB
testcase_16 AC 17 ms
6,944 KB
testcase_17 AC 17 ms
6,940 KB
testcase_18 AC 17 ms
6,944 KB
testcase_19 AC 16 ms
6,940 KB
testcase_20 AC 17 ms
6,940 KB
testcase_21 AC 17 ms
6,940 KB
testcase_22 AC 8 ms
6,944 KB
testcase_23 AC 12 ms
6,944 KB
testcase_24 AC 14 ms
6,940 KB
testcase_25 AC 20 ms
6,940 KB
testcase_26 AC 14 ms
6,944 KB
testcase_27 AC 16 ms
6,940 KB
testcase_28 AC 15 ms
6,944 KB
testcase_29 WA -
testcase_30 AC 14 ms
7,220 KB
testcase_31 AC 23 ms
8,840 KB
testcase_32 AC 11 ms
6,940 KB
testcase_33 AC 39 ms
23,384 KB
testcase_34 AC 46 ms
27,032 KB
testcase_35 AC 9 ms
6,944 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 9 ms
6,940 KB
testcase_39 AC 26 ms
12,344 KB
testcase_40 AC 25 ms
12,300 KB
testcase_41 WA -
testcase_42 AC 2 ms
6,944 KB
testcase_43 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
//*/
#include <atcoder/all>
using namespace atcoder;
#pragma GCC optimize("Ofast,unroll-loops,no-stack-protector,fast-math")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#pragma GCC target("avx,avx2,fma")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,fma")
//*/
#define rep(i,n) for(ll i=0;i<n;i++)
#define Rep(i,a,b) for(int i=a;i<b;i++)
#define ALL(x) (x).begin(),(x).end()
#define dbgv(x); for(auto now : x) cout << now << " "; cout << endl;
//using P = pair<int,int>;
using ll = long long;
using ull = unsigned long long;
//*/
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<ll> vll;
typedef vector<int> vint;
random_device rnd;
mt19937 rng(rnd());



void solve(){
  int n; cin >> n;
  vector<vint> mps(n);
  dsu d(n);
  scc_graph g(n);
  rep(i,n){
    int m; cin >> m;
    rep(_,m){
      int x; cin >>x;
      g.add_edge(i,x-1);
      d.merge(i,x-1);
    }
  }
  if(d.size(0) != n){
    cout << "No\n";
    return;
  }
  auto v = g.scc();
  auto tp = v[0];
  for(int tx : tp)if(tx == 0){
    cout << "Yes\n";
    return;
  }
  cout << "No\n";
}
 

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int t = 1; //cin >> t;
  rep(testcase,t) solve();
}
0