結果

問題 No.2780 The Bottle Imp
ユーザー 矢澤式WINTER矢澤式WINTER
提出日時 2024-06-07 23:08:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,975 bytes
コンパイル時間 7,872 ms
コンパイル使用メモリ 327,420 KB
実行使用メモリ 36,420 KB
最終ジャッジ日時 2024-06-08 10:37:53
合計ジャッジ時間 8,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 19 ms
7,920 KB
testcase_08 AC 19 ms
7,924 KB
testcase_09 AC 19 ms
7,936 KB
testcase_10 AC 20 ms
7,924 KB
testcase_11 AC 19 ms
7,920 KB
testcase_12 AC 30 ms
11,224 KB
testcase_13 AC 30 ms
11,088 KB
testcase_14 AC 20 ms
7,212 KB
testcase_15 AC 19 ms
7,088 KB
testcase_16 AC 19 ms
7,084 KB
testcase_17 AC 19 ms
7,080 KB
testcase_18 AC 20 ms
7,092 KB
testcase_19 AC 20 ms
7,088 KB
testcase_20 AC 20 ms
7,184 KB
testcase_21 AC 20 ms
7,092 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 13 ms
5,568 KB
testcase_24 AC 16 ms
6,852 KB
testcase_25 AC 25 ms
9,252 KB
testcase_26 AC 17 ms
6,728 KB
testcase_27 AC 26 ms
9,460 KB
testcase_28 AC 27 ms
9,584 KB
testcase_29 WA -
testcase_30 AC 22 ms
11,108 KB
testcase_31 AC 73 ms
16,072 KB
testcase_32 AC 12 ms
5,376 KB
testcase_33 AC 70 ms
31,732 KB
testcase_34 AC 86 ms
36,420 KB
testcase_35 AC 11 ms
5,376 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 10 ms
5,376 KB
testcase_39 AC 48 ms
17,968 KB
testcase_40 AC 47 ms
17,968 KB
testcase_41 WA -
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 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);
  vector<vint> to(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);
      to[i].push_back(x-1);
    }
  }
  if(d.size(0) != n){
    cout << "No\n";
    return;
  }
  map<int,int> mp;
  auto v = g.scc();
  rep(i,v.size()){
    for(int nxt : v[i]) mp[nxt] = i;
  }
  bool ok = false;
  int start = mp[0];
  queue<int> q;
  vector<bool> jud(v.size(),false);
  vector<bool> vis(n,false);
  jud[start] = true;
  for(int nxt : v[start]){
    q.push(nxt);
    vis[nxt] = true;
  }
  while(!q.empty()){
    int fro = q.front(); q.pop();
    for(int nxt : to[fro])if(!vis[nxt]){
      vis[nxt] = true;
      jud[mp[nxt]] = true;
      q.push(nxt);
    }
  }
  int cnt = 0;
  rep(i,v.size())if(jud[i]) cnt++;
  if(cnt == v.size()) cout << "Yes\n";
  else cout << "No\n";
}
 

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