結果

問題 No.2780 The Bottle Imp
ユーザー 遭難者遭難者
提出日時 2024-06-07 22:43:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,237 bytes
コンパイル時間 5,610 ms
コンパイル使用メモリ 321,728 KB
実行使用メモリ 34,964 KB
最終ジャッジ日時 2024-06-08 10:35:44
合計ジャッジ時間 7,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 24 ms
9,380 KB
testcase_08 AC 23 ms
9,396 KB
testcase_09 AC 24 ms
9,512 KB
testcase_10 AC 25 ms
9,392 KB
testcase_11 AC 24 ms
9,516 KB
testcase_12 AC 40 ms
14,760 KB
testcase_13 AC 40 ms
14,756 KB
testcase_14 AC 17 ms
6,932 KB
testcase_15 AC 18 ms
6,940 KB
testcase_16 AC 16 ms
6,936 KB
testcase_17 AC 16 ms
6,944 KB
testcase_18 AC 17 ms
6,936 KB
testcase_19 AC 17 ms
7,064 KB
testcase_20 AC 16 ms
6,936 KB
testcase_21 AC 16 ms
7,064 KB
testcase_22 AC 10 ms
5,692 KB
testcase_23 AC 14 ms
6,984 KB
testcase_24 AC 20 ms
8,400 KB
testcase_25 AC 32 ms
11,772 KB
testcase_26 AC 19 ms
8,200 KB
testcase_27 AC 16 ms
7,636 KB
testcase_28 AC 16 ms
7,632 KB
testcase_29 WA -
testcase_30 AC 15 ms
8,344 KB
testcase_31 AC 27 ms
11,548 KB
testcase_32 AC 10 ms
5,376 KB
testcase_33 AC 42 ms
26,512 KB
testcase_34 AC 56 ms
34,964 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 28 ms
14,456 KB
testcase_40 AC 28 ms
14,452 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;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using mint = atcoder::modint1000000007;
istream& operator>>(istream& is, mint& a) {
    int t; is >> t; a = t;
    return is;
}
ostream& operator<<(ostream& os, mint a) {
    return os << a.val();
}
#endif
#ifdef DEBUG
#define _GLIBCXX_DEBUG
#else
#pragma GCC target("avx2")
#pragma GCC optimize("Ofast,unroll-loops")
#define cerr if (false) cerr
#undef assert
#define assert(...) void(0)
// #undef endl
// #define endl '\n'
#endif
#undef long
#define long long long
#define overload3(a, b, c, name, ...) name
#define rep1(n) for (long i = 0; i < n; i++)
#define rep2(i, n) for (long i = 0; i < n; i++)
#define rep3(i, a, b) for (long i = a; i < b; i++)
#define rep(...) overload3(__VA_ARGS__, rep3, rep2, rep1)(__VA_ARGS__)
#define per1(n) for (long i = n - 1; i >= 0; i--)
#define per2(i, n) for (long i = n - 1; i >= 0; i--)
#define per3(i, a, b) for (long i = b - 1; i >= (a); i--)
#define per(...) overload3(__VA_ARGS__, per3, per2, per1)(__VA_ARGS__)
#define ALL(a) a.begin(), a.end()
#define UNIQUE(a) sort(ALL(a)); a.erase(unique(ALL(a)), a.end())
#define vec vector
template<typename T>
ostream& operator<<(ostream& os, vector<T> a) {
    const int n = a.size();
    rep(i, n) {
        os << a[i];
        if (i + 1 != n) os << " ";
    }
    return os;
}
template<typename T, size_t n>
ostream& operator<<(ostream& os, array<T, n> a) {
    rep(i, n) {
        os << a[i];
        if (i + 1 != n) os << " ";
    }
    return os;
}
template<typename T>
istream& operator>>(istream& is, vector<T>& a) {
    for (T& i : a) is >> i;
    return is;
}
template<typename T, typename S>
bool chmin(T& x, S y) {
    if (x > (T)y) { x = (T)y; return true; }
    return false;
}
template<typename T, typename S>
bool chmax(T& x, S y) {
    if (x < (T)y) { x = (T)y; return true; }
    return false;
}
template<typename T>
void operator++(vector<T>& a) {
    for (T& i : a) ++i;
}
template<typename T>
void operator--(vector<T>& a) {
    for (T& i : a) --i;
}
template<typename T>
void operator++(vector<T>& a, int) {
    for (T& i : a) i++;
}
template<typename T>
void operator--(vector<T>& a, int) {
    for (T& i : a) i--;
}
void solve() {
    int n; cin >> n;
    atcoder::scc_graph g(n);
    vec<vec<int>> ggg(n);
    rep(i, n) {
        int m; cin >> m;
        rep(j, m) {
            int a; cin >> a; a--;
            g.add_edge(i, a);
            ggg[i].push_back(a);
        }
    }
    auto scc = g.scc();
    vec<int> s(n);
    int m = scc.size();
    rep(i, m) for (int j : scc[i]) s[j] = i;
    if (m != 1 && s[0] != 0) {
        cout << "No" << endl;
        return;
    }
    vec<vec<int>> gg(m);
    rep(i, n) for (int j : ggg[i]) if (s[i] != s[j]) gg[s[i]].push_back(s[j]);
    vec<bool> ok(m);
    ok[0] = true;
    rep(i, m) {
        if (!ok[i]) {
            cout << "No" << endl;
            return;
        }
        for (int j : gg[i]) ok[j] = true;
    }
    cout << "Yes" << endl;
    return;
}
int main()
{
    srand((unsigned)time(NULL));
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(40);
    int t = 1;
    // cin >> t;
    rep(t)
        solve();
    return 0;
}
0