結果

問題 No.2780 The Bottle Imp
ユーザー yuusaanyuusaan
提出日時 2024-05-30 22:01:44
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,121 bytes
コンパイル時間 5,360 ms
コンパイル使用メモリ 312,456 KB
実行使用メモリ 24,396 KB
最終ジャッジ日時 2024-06-08 10:26:50
合計ジャッジ時間 8,152 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 39 ms
6,940 KB
testcase_08 AC 41 ms
6,988 KB
testcase_09 AC 39 ms
6,944 KB
testcase_10 AC 39 ms
6,944 KB
testcase_11 AC 40 ms
6,984 KB
testcase_12 AC 63 ms
10,316 KB
testcase_13 AC 64 ms
10,192 KB
testcase_14 AC 32 ms
6,944 KB
testcase_15 AC 32 ms
6,944 KB
testcase_16 AC 32 ms
6,944 KB
testcase_17 AC 33 ms
6,940 KB
testcase_18 AC 34 ms
6,944 KB
testcase_19 AC 35 ms
6,940 KB
testcase_20 AC 34 ms
6,940 KB
testcase_21 AC 32 ms
6,944 KB
testcase_22 AC 18 ms
6,940 KB
testcase_23 AC 29 ms
6,944 KB
testcase_24 AC 34 ms
6,944 KB
testcase_25 AC 52 ms
8,296 KB
testcase_26 AC 33 ms
6,944 KB
testcase_27 AC 28 ms
6,948 KB
testcase_28 AC 28 ms
6,940 KB
testcase_29 WA -
testcase_30 AC 25 ms
6,944 KB
testcase_31 AC 47 ms
6,940 KB
testcase_32 AC 22 ms
6,944 KB
testcase_33 AC 64 ms
20,808 KB
testcase_34 AC 71 ms
24,396 KB
testcase_35 AC 18 ms
6,940 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 18 ms
6,940 KB
testcase_39 AC 49 ms
10,700 KB
testcase_40 AC 48 ms
10,576 KB
testcase_41 WA -
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <stdio.h>
#include <algorithm>
#include <vector>
#include <tuple>
#include <map>
#include<set>
#include<queue>
#include<stack>
#include <unordered_set>
#include<thread>
#include<bits/stdc++.h>

#include <atcoder/all>
#include <cstdio>

// #pragma GCC target("avx")
// #pragma GCC optimize("O3")
// #pragma GCC optimize("unroll-loops")

// string abc = "abcdefghijklmnopqrstuvwxyz";
// string abc = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";

using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using ull = unsigned long long;
using mint = modint998244353;
//using mint = modint1000000007;
template<typename T> using pq = priority_queue<T>;//降順?(最大取り出し)
template<typename T> using pqg = priority_queue<T, vector<T>, greater<T>>;//昇順?(最小取り出し)
template<typename T> using vector2 = vector<vector<T>>;
template<typename T> using vector3 = vector<vector<vector<T>>>;
template<typename T> using vector4 = vector<vector<vector<vector<T>>>>;
template<typename T> using vector5 = vector<vector<vector<vector<vector<T>>>>>;
template<typename T> using vector6 = vector<vector<vector<vector<vector<vector<T>>>>>>;
template<typename T> using pairs = pair<T,T>;
#define rep(i, n) for (ll i = 0; i < ll(n); i++)
#define rep1(i,n) for(int i = 1;i <= int(n);i++)
#define repm(i, m, n) for (int i = (m); (i) < int(n);(i)++)
#define repmr(i, m, n) for (int i = (m) - 1; (i) >= int(n);(i)--)
#define rep0(i,n) for(int i = n - 1;i >= 0;i--)
#define rep01(i,n) for(int i = n;i >= 1;i--)



/// ここから////////////////////////////////////////////

int main() {
    int n;
    cin >> n;
    scc_graph g(n);
    for(int j = 0;j < n; j++){
        int m;
        cin >> m;
        for(int i = 0;i < m;i++){
            int a;
            cin >> a;
            a--;
            g.add_edge(j,a);
        }
    }
    vector<vector<int>> sorted = g.scc();
    bool ans = 0;
    for(int j : sorted[0]){
        if(j == 0){
            ans = 1;
        }
    }

    if(ans)cout << "Yes" << endl;
    else cout << "No" << endl;
    return 0;
}
0