結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 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 21 ms
8,060 KB
testcase_08 AC 21 ms
8,060 KB
testcase_09 AC 21 ms
8,184 KB
testcase_10 AC 20 ms
7,936 KB
testcase_11 AC 21 ms
8,056 KB
testcase_12 AC 34 ms
12,688 KB
testcase_13 AC 34 ms
12,564 KB
testcase_14 AC 14 ms
6,228 KB
testcase_15 AC 14 ms
6,100 KB
testcase_16 AC 14 ms
6,100 KB
testcase_17 AC 14 ms
6,100 KB
testcase_18 AC 14 ms
6,100 KB
testcase_19 AC 15 ms
6,096 KB
testcase_20 AC 15 ms
6,100 KB
testcase_21 AC 14 ms
6,104 KB
testcase_22 AC 9 ms
5,376 KB
testcase_23 AC 13 ms
6,064 KB
testcase_24 AC 16 ms
7,228 KB
testcase_25 AC 25 ms
9,968 KB
testcase_26 AC 15 ms
7,108 KB
testcase_27 AC 14 ms
5,908 KB
testcase_28 AC 13 ms
6,036 KB
testcase_29 WA -
testcase_30 AC 13 ms
7,056 KB
testcase_31 AC 21 ms
8,492 KB
testcase_32 AC 10 ms
5,376 KB
testcase_33 AC 36 ms
23,184 KB
testcase_34 AC 43 ms
26,640 KB
testcase_35 AC 8 ms
5,376 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 9 ms
5,376 KB
testcase_39 AC 23 ms
12,040 KB
testcase_40 AC 23 ms
12,168 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);
  scc_graph g(n);
  rep(i,n){
    int m; cin >> m;
    rep(_,m){
      int x; cin >>x;
      g.add_edge(i,x-1);
    }
  }
  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