結果

問題 No.2780 The Bottle Imp
ユーザー のーとのーと
提出日時 2024-07-10 15:37:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,674 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-07-10 15:38:04
合計ジャッジ時間 12,197 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 257 ms
18,304 KB
testcase_08 AC 249 ms
18,304 KB
testcase_09 AC 263 ms
18,432 KB
testcase_10 AC 256 ms
18,432 KB
testcase_11 AC 233 ms
18,304 KB
testcase_12 AC 462 ms
23,808 KB
testcase_13 AC 425 ms
23,808 KB
testcase_14 AC 120 ms
15,488 KB
testcase_15 AC 121 ms
15,744 KB
testcase_16 AC 122 ms
15,616 KB
testcase_17 AC 120 ms
15,488 KB
testcase_18 AC 121 ms
15,616 KB
testcase_19 AC 122 ms
15,744 KB
testcase_20 AC 117 ms
15,488 KB
testcase_21 AC 118 ms
15,616 KB
testcase_22 AC 111 ms
13,568 KB
testcase_23 AC 119 ms
14,720 KB
testcase_24 AC 217 ms
17,024 KB
testcase_25 AC 354 ms
20,864 KB
testcase_26 AC 168 ms
16,512 KB
testcase_27 AC 208 ms
18,456 KB
testcase_28 AC 207 ms
18,584 KB
testcase_29 WA -
testcase_30 AC 193 ms
16,384 KB
testcase_31 AC 430 ms
25,216 KB
testcase_32 AC 63 ms
11,904 KB
testcase_33 AC 448 ms
27,904 KB
testcase_34 AC 442 ms
28,032 KB
testcase_35 AC 68 ms
13,056 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 67 ms
13,184 KB
testcase_39 AC 306 ms
22,608 KB
testcase_40 AC 312 ms
22,628 KB
testcase_41 WA -
testcase_42 AC 28 ms
10,752 KB
testcase_43 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

def minus1(L):#入力前に
  return [l-1 for l in L]
def emp_graph(N):#長さNの空の隣接リスト
  return [[] for i in range(N)]
 
graph=emp_graph(N)
  
for i in range(N):
	L=minus1(list(map(int,input().split())))
	M=L[0]
	A=L[1:]
	for a in A:
		graph[i].append(a)

#print(graph)

from collections import deque
import sys
sys.setrecursionlimit(10**5) #ここまでは共通
def bfs(graph,start):#隣接リストgraphの頂点startから各点までの最短距離(デフォ-1)のリストdistを返す
  """
  各辺がつなぐ2つの頂点をa,bとする
  →隣接リストgraphにa→bなど入れる
  ※有向グラフなら片方から、無向グラフなら両側から入れる
  """
  dist = [-1]*len(graph) #各頂点の最短距離のリスト(これが求めるもの。デフォは-1)
  dist[start] = 0 #最初の出発地は0にする
  d=deque()
  d.append(start) #最初の出発地を入れる
  
  """
  目的地になったが出発地になっていない頂点のdeque
  「先頭から要素を取り出す」「末尾に要素を追加する」ためdeque使用
  """
  
  while len(d)>0: # (出発地,目的地)
   i = d.popleft() #dの一番[左]は今から出発地になる
   for j in graph[i]: #その頂点に直接つながる各頂点[目]について
     if dist[j] != -1: #[目]に訪問済みなら
       continue #スキップ
     dist[j] = dist[i] + 1 #でなければ(未訪問なら直ちに)最短距離をdistに記録(目的地になった)
     d.append(j) #dの[右]に、出発地未経験の頂点を追加
  return dist

dist=bfs(graph,0)#普通の場合
print("No" if -1 in dist else "Yes")
0