結果

問題 No.2780 The Bottle Imp
ユーザー hiro1729hiro1729
提出日時 2024-06-07 21:59:45
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 527 bytes
コンパイル時間 2,461 ms
コンパイル使用メモリ 250,972 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-08 10:29:58
合計ジャッジ時間 5,327 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 30 ms
5,376 KB
testcase_08 AC 35 ms
5,376 KB
testcase_09 AC 29 ms
5,376 KB
testcase_10 AC 30 ms
5,376 KB
testcase_11 AC 32 ms
5,376 KB
testcase_12 AC 47 ms
5,376 KB
testcase_13 AC 46 ms
5,376 KB
testcase_14 AC 25 ms
5,376 KB
testcase_15 AC 25 ms
5,376 KB
testcase_16 AC 25 ms
5,376 KB
testcase_17 AC 25 ms
5,376 KB
testcase_18 AC 26 ms
5,376 KB
testcase_19 AC 25 ms
5,376 KB
testcase_20 AC 25 ms
5,376 KB
testcase_21 AC 25 ms
5,376 KB
testcase_22 AC 13 ms
5,376 KB
testcase_23 AC 21 ms
5,376 KB
testcase_24 AC 24 ms
5,376 KB
testcase_25 AC 38 ms
5,376 KB
testcase_26 AC 25 ms
5,376 KB
testcase_27 AC 23 ms
5,376 KB
testcase_28 AC 24 ms
5,376 KB
testcase_29 WA -
testcase_30 AC 18 ms
5,376 KB
testcase_31 AC 37 ms
5,376 KB
testcase_32 AC 17 ms
5,376 KB
testcase_33 AC 42 ms
5,376 KB
testcase_34 AC 41 ms
5,376 KB
testcase_35 AC 14 ms
5,376 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 14 ms
5,376 KB
testcase_39 AC 37 ms
5,376 KB
testcase_40 AC 36 ms
5,376 KB
testcase_41 WA -
testcase_42 AC 1 ms
5,376 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/dsu>
using namespace std;

int main() {
	int N;
	cin >> N;
	vector<int> d(N);
	atcoder::dsu uf(N);
	for (int i = 0; i < N; i++) {
		int M; cin >> M;
		vector<int> A(M);
		for (int j = 0; j < M; j++) cin >> A[j];
		for (int j = 0; j < M; j++) {
			A[j]--;
			d[A[j]]++;
			uf.merge(i, A[j]);
		}
	}
	bool ok1 = true, ok2 = true;
	for (int i = 1; i < N; i++) {
		if (d[i] == 0) ok1 = false;
		if (!uf.same(0, i)) ok2 = false;
	}
	if (ok1 && ok2) cout << "Yes\n";
	else cout << "No\n";
}
0