結果

問題 No.1147 土偶Ⅱ
ユーザー first_vilfirst_vil
提出日時 2020-08-06 11:06:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 500 ms
コード長 981 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 77,412 KB
最終ジャッジ日時 2024-10-11 10:13:51
合計ジャッジ時間 2,729 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,656 KB
testcase_01 AC 44 ms
54,428 KB
testcase_02 AC 44 ms
54,284 KB
testcase_03 AC 44 ms
55,300 KB
testcase_04 AC 78 ms
73,120 KB
testcase_05 AC 54 ms
63,060 KB
testcase_06 AC 103 ms
77,332 KB
testcase_07 AC 97 ms
77,216 KB
testcase_08 AC 63 ms
67,500 KB
testcase_09 AC 99 ms
77,124 KB
testcase_10 AC 78 ms
73,864 KB
testcase_11 AC 113 ms
77,172 KB
testcase_12 AC 92 ms
76,920 KB
testcase_13 AC 71 ms
71,684 KB
testcase_14 AC 110 ms
77,132 KB
testcase_15 AC 82 ms
74,136 KB
testcase_16 AC 70 ms
70,616 KB
testcase_17 AC 48 ms
61,492 KB
testcase_18 AC 61 ms
66,084 KB
testcase_19 AC 100 ms
77,188 KB
testcase_20 AC 48 ms
61,332 KB
testcase_21 AC 44 ms
55,768 KB
testcase_22 AC 100 ms
77,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  from collections import deque
  n,m=map(int,input().split())
  g=[[] for _ in range(n)]
  for _ in range(m):
    a,b=map(int,input().split())
    a-=1
    b-=1
    g[a].append(b)
    g[b].append(a)
  dp=[[[False]*n for j in range(n)] for i in range(3)]
  for i in range(n):
    dp[0][i][i]=True
  bfs=deque([i*1000+i for i in range(n)])
  pop=bfs.popleft
  push=bfs.append
  while bfs:
    v=pop()
    d=v//1000000
    v%=1000000
    s=v//1000
    cur=v%1000
    if d==2:
      continue
    for to in g[cur]:
      if dp[d+1][s][to]:
        continue
      dp[d+1][s][to]=True
      push((d+1)*1000000+s*1000+to)
  ans=n*(n-1)*(n-2)//6
  for i in range(n):
    for j in range(i+1,n):
      for k in range(j+1,n):
        if not(dp[0][i][j] or dp[1][i][j]) and dp[2][i][j]:
          ans-=1
        elif not(dp[0][j][k] or dp[1][j][k]) and dp[2][j][k]:
          ans-=1
        elif not(dp[0][k][i] or dp[1][k][i]) and dp[2][k][i]:
          ans-=1
  print(ans)
main()
0