結果

問題 No.2780 The Bottle Imp
ユーザー ypwwypww
提出日時 2024-06-07 22:25:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,714 bytes
コンパイル時間 4,168 ms
コンパイル使用メモリ 267,088 KB
実行使用メモリ 31,780 KB
最終ジャッジ日時 2024-06-08 10:33:40
合計ジャッジ時間 5,996 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 16 ms
6,616 KB
testcase_08 AC 15 ms
6,752 KB
testcase_09 AC 16 ms
6,620 KB
testcase_10 AC 15 ms
6,752 KB
testcase_11 AC 16 ms
6,620 KB
testcase_12 AC 24 ms
8,756 KB
testcase_13 AC 23 ms
8,756 KB
testcase_14 AC 14 ms
6,976 KB
testcase_15 AC 14 ms
6,980 KB
testcase_16 AC 13 ms
5,376 KB
testcase_17 AC 13 ms
5,376 KB
testcase_18 AC 15 ms
6,980 KB
testcase_19 AC 14 ms
6,912 KB
testcase_20 AC 14 ms
6,976 KB
testcase_21 AC 12 ms
5,376 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 11 ms
5,376 KB
testcase_24 AC 13 ms
5,876 KB
testcase_25 AC 19 ms
7,712 KB
testcase_26 AC 13 ms
5,988 KB
testcase_27 AC 13 ms
7,544 KB
testcase_28 AC 14 ms
7,672 KB
testcase_29 AC 17 ms
10,556 KB
testcase_30 AC 10 ms
6,072 KB
testcase_31 AC 24 ms
11,792 KB
testcase_32 AC 9 ms
5,376 KB
testcase_33 AC 40 ms
28,072 KB
testcase_34 AC 47 ms
31,780 KB
testcase_35 AC 8 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 7 ms
5,376 KB
testcase_39 AC 25 ms
15,108 KB
testcase_40 AC 24 ms
15,240 KB
testcase_41 AC 25 ms
15,112 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

using namespace std;
using namespace atcoder;
using ll = long long;
using ull = unsigned long long;
template <class T> using priority_queue_rev = priority_queue<T, vector<T>, greater<T>>;

#define rep(i, a, b) for(ll i=a; i<b; i++)
#define rrep(i, a, b) for(ll i=a; i>=b; i--)
#define all(a) (a).begin(), (a).end()
#define smod(n, m) ((((n) % (m)) + (m)) % (m)) // 非負mod
#define YesNo(bool) if(bool){cout<<"Yes"<<endl;}else{cout<<"No"<<endl;}

template<typename T> inline bool chmax(T &a, T b) { return ((a < b) ? (a = b, true) : (false)); }
template<typename T> inline bool chmin(T &a, T b) { return ((a > b) ? (a = b, true) : (false)); }

inline int popcount(int n) { return __builtin_popcount(n); } // 2進数で表した場合に立ってるビット数がいくつか
inline int popcount(ll n) { return __builtin_popcountll(n); }
inline int ctz(int n) { return n != 0 ? __builtin_ctz(n) : -1; } // 2進数で表した場合に 1 の位からいくつ 0 が連なっているか
inline int ctz(ll n) { return n != 0 ? __builtin_ctzll(n) : -1; }
inline int clz(int n) { return n != 0 ? (31 - __builtin_clz(n)) : -1; } // 2進数で表した場合に左側にいくつ 0 を埋める必要があるか
inline int clz(ll n) { return n != 0 ? (63 - __builtin_clzll(n)) : -1; }

const double PI = 3.141592653589793;
const vector<int> DX = { 1, 0, -1, 0 };
const vector<int> DY = { 0, 1, 0, -1 };
const long long INF = 4004004003104004004LL; // (int)INF = 1010931620;
ll coordinate(ll h, ll w, ll W){ return h*W + w; } // 二次元座標を一次元座標に変換

#define endl "\n" // インタラクティブの時はコメントアウトする

int main()
{
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    // cout << fixed << setprecision(18);

    int n;
    cin>>n;
    vector<int> m(n);
    vector<vector<int>> a(n);
    scc_graph g(n);
    vector<bool> v(n);
    rep(i,0,n){
        cin >> m[i];
        rep(j,0,m[i]){
            ll aa;
            cin>>aa;
            aa--;
            v[aa] = true;
            g.add_edge(i, aa);
            a[i].push_back(aa);
        }
    }
    rep(i,1,n){
        if (!v[i]){
            YesNo(false);
            return 0;
        }
    }

    auto arr = g.scc();
    vector<int> b(n);
    rep(i,0,arr.size()){
        for (auto x: arr[i]){
            b[x] = i;
        }
    }

    rep(i,0,arr.size()-1){
        bool flag = false;
        for (auto x: arr[i]){
            for (auto nex: a[x]){
                if (b[nex] == i+1) flag = true;
            }
        }
        if (!flag){
            YesNo(false);
            return 0;
        }
    }
    YesNo(true);
    
    
    return 0;
}
0