結果

問題 No.2910 単体ホモロジー入門
ユーザー むつあるむつある
提出日時 2024-10-04 21:34:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-10-04 21:34:50
合計ジャッジ時間 2,796 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,644 KB
testcase_01 AC 33 ms
53,132 KB
testcase_02 AC 32 ms
54,404 KB
testcase_03 AC 32 ms
53,076 KB
testcase_04 AC 32 ms
52,864 KB
testcase_05 AC 32 ms
53,780 KB
testcase_06 AC 32 ms
54,004 KB
testcase_07 AC 32 ms
53,112 KB
testcase_08 AC 33 ms
52,780 KB
testcase_09 AC 33 ms
52,404 KB
testcase_10 AC 32 ms
53,088 KB
testcase_11 AC 33 ms
52,932 KB
testcase_12 AC 31 ms
52,480 KB
testcase_13 AC 32 ms
52,460 KB
testcase_14 AC 33 ms
53,180 KB
testcase_15 AC 33 ms
52,660 KB
testcase_16 AC 33 ms
52,364 KB
testcase_17 AC 34 ms
53,368 KB
testcase_18 AC 33 ms
52,556 KB
testcase_19 AC 32 ms
53,120 KB
testcase_20 AC 33 ms
52,596 KB
testcase_21 AC 31 ms
52,868 KB
testcase_22 AC 33 ms
52,324 KB
testcase_23 AC 33 ms
53,136 KB
testcase_24 AC 31 ms
53,008 KB
testcase_25 AC 31 ms
53,808 KB
testcase_26 AC 32 ms
53,148 KB
testcase_27 AC 49 ms
53,264 KB
testcase_28 AC 33 ms
52,924 KB
testcase_29 AC 32 ms
53,352 KB
testcase_30 AC 33 ms
52,656 KB
testcase_31 AC 31 ms
52,956 KB
testcase_32 AC 32 ms
52,740 KB
testcase_33 AC 33 ms
52,604 KB
testcase_34 AC 33 ms
53,740 KB
testcase_35 AC 33 ms
52,872 KB
testcase_36 AC 32 ms
54,184 KB
testcase_37 AC 33 ms
52,720 KB
testcase_38 AC 32 ms
52,264 KB
testcase_39 AC 32 ms
53,200 KB
testcase_40 AC 32 ms
53,156 KB
testcase_41 AC 32 ms
52,320 KB
testcase_42 AC 32 ms
53,148 KB
testcase_43 AC 32 ms
53,248 KB
testcase_44 AC 33 ms
53,796 KB
testcase_45 AC 32 ms
53,352 KB
testcase_46 AC 32 ms
52,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n,m=map(int,input().split())
g=[[0]*n for _ in range(n)]
for _ in range(m):
  u,v=map(int,input().split())
  g[u][v]=1
  g[v][u]=1
  
v=set(map(int,input().split()))
s=0
for i in v:
  s+=1<<i
  
ans=False
  
for i in range(1<<n):
  if i.bit_count()<3:
    continue
  if i==s:
    continue
  p=[]
  for j in range(n):
    if i&1<<j:
      p.append(j)
  for v in itertools.permutations(p):
    bool=True
    l=len(v)
    for j in range(l):
      if not g[v[j]][v[(j+1)%l]]:
        bool=False
    if bool:
      ans=True
    
if ans:
  print('Yes')
else:
  print('No')
0