結果

問題 No.2780 The Bottle Imp
ユーザー t98slidert98slider
提出日時 2024-06-07 21:46:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 4,643 ms
コンパイル使用メモリ 267,360 KB
実行使用メモリ 25,956 KB
最終ジャッジ日時 2024-06-08 10:28:40
合計ジャッジ時間 6,700 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 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 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 21 ms
7,008 KB
testcase_08 AC 21 ms
6,940 KB
testcase_09 AC 20 ms
6,752 KB
testcase_10 AC 21 ms
6,884 KB
testcase_11 AC 20 ms
6,760 KB
testcase_12 AC 34 ms
10,320 KB
testcase_13 AC 34 ms
10,336 KB
testcase_14 AC 14 ms
6,120 KB
testcase_15 AC 15 ms
5,952 KB
testcase_16 AC 14 ms
6,116 KB
testcase_17 AC 15 ms
6,112 KB
testcase_18 AC 15 ms
5,860 KB
testcase_19 AC 15 ms
6,116 KB
testcase_20 AC 15 ms
6,112 KB
testcase_21 AC 14 ms
6,112 KB
testcase_22 AC 9 ms
5,376 KB
testcase_23 AC 13 ms
6,120 KB
testcase_24 AC 18 ms
6,500 KB
testcase_25 AC 27 ms
8,296 KB
testcase_26 AC 17 ms
6,496 KB
testcase_27 AC 13 ms
5,376 KB
testcase_28 AC 13 ms
5,376 KB
testcase_29 WA -
testcase_30 AC 13 ms
6,116 KB
testcase_31 AC 20 ms
6,372 KB
testcase_32 AC 10 ms
5,376 KB
testcase_33 AC 37 ms
22,244 KB
testcase_34 AC 43 ms
25,956 KB
testcase_35 AC 8 ms
5,376 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 8 ms
5,376 KB
testcase_39 AC 24 ms
11,108 KB
testcase_40 AC 24 ms
11,112 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 ll = long long;

int main(){
	ios::sync_with_stdio(false);
	cin.tie(0);
	int n;
	cin >> n;
	atcoder::scc_graph g(n);
	for(int i = 0; i < n; i++){
		int m, j;
		cin >> m;
		while(m--){
			cin >> j;
			g.add_edge(i, j - 1);
		}
	}
	auto G = g.scc();
	sort(G[0].begin(), G[0].end());
	cout << (binary_search(G[0].begin(), G[0].end(), 0) ? "Yes" : "No") << '\n';
}
0