結果

問題 No.2780 The Bottle Imp
ユーザー AwashAmityOakAwashAmityOak
提出日時 2024-06-07 22:37:32
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,045 bytes
コンパイル時間 4,482 ms
コンパイル使用メモリ 313,476 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-06-08 10:35:28
合計ジャッジ時間 6,683 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 14 ms
5,760 KB
testcase_08 AC 15 ms
5,888 KB
testcase_09 AC 15 ms
5,888 KB
testcase_10 AC 15 ms
6,016 KB
testcase_11 AC 13 ms
5,760 KB
testcase_12 AC 20 ms
7,552 KB
testcase_13 AC 21 ms
7,680 KB
testcase_14 AC 12 ms
5,376 KB
testcase_15 AC 12 ms
5,376 KB
testcase_16 AC 12 ms
5,376 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 12 ms
5,376 KB
testcase_20 AC 11 ms
5,376 KB
testcase_21 AC 12 ms
5,376 KB
testcase_22 AC 7 ms
5,376 KB
testcase_23 AC 10 ms
5,376 KB
testcase_24 AC 12 ms
5,504 KB
testcase_25 AC 19 ms
6,656 KB
testcase_26 AC 12 ms
5,376 KB
testcase_27 AC 11 ms
6,032 KB
testcase_28 AC 11 ms
6,164 KB
testcase_29 WA -
testcase_30 AC 9 ms
5,376 KB
testcase_31 AC 18 ms
8,320 KB
testcase_32 AC 7 ms
5,376 KB
testcase_33 AC 20 ms
8,832 KB
testcase_34 AC 20 ms
8,704 KB
testcase_35 AC 7 ms
5,376 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 6 ms
5,376 KB
testcase_39 AC 17 ms
7,420 KB
testcase_40 AC 16 ms
7,424 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>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
#define int ll
#define OVERLOAD_REP(_1, _2, _3, name, ...) name
#define REP2(i, l, r) for (int i = (int)(l); i < (int)(r); ++i)
#define REP1(i, n) REP2(i, 0, n)
#define rep(...) OVERLOAD_REP(__VA_ARGS__, REP2, REP1)(__VA_ARGS__)
#define RREP2(i, r, l) for (int i = (int)(r)-1; i >= (int)(l); --i)
#define RREP1(i, n) RREP2(i, n, 0)
#define rrep(...) OVERLOAD_REP(__VA_ARGS__, RREP2, RREP1)(__VA_ARGS__)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
#define debug(x) cerr << #x << ": " << (x) << endl
#define pb push_back
#define mp make_pair
#define mt make_tuple
const int INF = 4e18;
const int MOD = 998244353;
const int MOD1 = 1e9 + 7;
template<class T> inline bool chmax(T &a, T b) { return a < b ? a = b, 1 : 0; }
template<class T> inline bool chmin(T &a, T b) { return a > b ? a = b, 1 : 0; }
template<class T> T pow(T a, T b, T m) { return b ? b&1 ? a*pow(a, b^1, m)%m : pow(a*a%m, b>>1, m)%m : 1; }
template<class T> T pow(T a, T b) { return b ? b&1 ? pow(a, b^1)*a : pow(a*a, b>>1) : 1; }
template<class... T> void input(T&... args) { ((cin >> args), ...); }
template<class... T> void print(T... args) { ((cout << args << " "), ...); }
template<class... T> void println(T... args) { print(args...); cout << endl; }
template<class T> void println(vector<T> A) { for (T a : A) print(a); cout << endl; }

signed main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
    
	int N;
	input(N);
	
	vector<vector<int>> edges(N);
	rep(i, N) {
		int M;
		input(M);
		rep(j, M) {
			int A;
			input(A);
			edges[i].pb(A-1);
		}
	}
	
	vector<bool> visited(N, false);
	stack<int> st;
	visited[0] = true;
	st.push(0);
	while (!st.empty()) {
		int i = st.top();
		st.pop();
		rep(j, edges[i].size()) {
			if (!visited[edges[i][j]]) {
				visited[edges[i][j]] = true;
				st.push(edges[i][j]);
			}
		}
	}
	
	bool ans = true;
	rep(i, N) ans &= visited[i];
	println(ans ? "Yes" : "No");
}
0