結果

問題 No.2780 The Bottle Imp
ユーザー 沙耶花沙耶花
提出日時 2024-06-07 21:40:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 4,056 ms
コンパイル使用メモリ 266,252 KB
実行使用メモリ 31,484 KB
最終ジャッジ日時 2024-06-08 10:28:05
合計ジャッジ時間 6,660 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 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 42 ms
9,232 KB
testcase_08 AC 43 ms
9,496 KB
testcase_09 AC 43 ms
9,496 KB
testcase_10 AC 44 ms
9,368 KB
testcase_11 AC 42 ms
9,360 KB
testcase_12 AC 69 ms
14,732 KB
testcase_13 AC 68 ms
14,724 KB
testcase_14 AC 34 ms
7,040 KB
testcase_15 AC 34 ms
7,044 KB
testcase_16 AC 35 ms
6,916 KB
testcase_17 AC 34 ms
6,908 KB
testcase_18 AC 34 ms
7,036 KB
testcase_19 AC 35 ms
7,040 KB
testcase_20 AC 35 ms
7,040 KB
testcase_21 AC 35 ms
7,040 KB
testcase_22 AC 18 ms
5,672 KB
testcase_23 AC 28 ms
6,964 KB
testcase_24 AC 35 ms
8,504 KB
testcase_25 AC 54 ms
11,488 KB
testcase_26 AC 35 ms
8,300 KB
testcase_27 AC 29 ms
7,612 KB
testcase_28 AC 29 ms
7,480 KB
testcase_29 AC 33 ms
10,364 KB
testcase_30 AC 27 ms
8,312 KB
testcase_31 AC 53 ms
11,528 KB
testcase_32 AC 22 ms
5,376 KB
testcase_33 AC 69 ms
27,764 KB
testcase_34 AC 75 ms
31,484 KB
testcase_35 AC 18 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 17 ms
5,376 KB
testcase_39 AC 54 ms
14,944 KB
testcase_40 AC 54 ms
14,948 KB
testcase_41 AC 52 ms
14,940 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001


int main(){
	
	int n;
	cin>>n;
	vector<vector<int>> E(n);
	scc_graph S(n);
	rep(i,n){
		int m;
		cin>>m;
		rep(j,m){
			int a;
			cin>>a;
			a--;
			E[i].push_back(a);
			S.add_edge(i,a);
		}
	}
	auto s = S.scc();
	vector<int> pos(n);
	rep(i,s.size()){
		for(auto x:s[i]){
			pos[x] = i;
		}
	}
	if(pos[0]!=0){
		cout<<"No"<<endl;
		return 0;
	}
	rep(i,s.size()-1){
		bool f = false;
		rep(j,s[i].size()){
			rep(k,E[s[i][j]].size()){
				if(pos[E[s[i][j]][k]]==i+1){
					f = true;
					break;
				}
			}
		}if(!f){
			cout<<"No"<<endl;
			return 0;
		}
	}
	cout<<"Yes"<<endl;
	
	return 0;
}
0