結果

問題 No.488 四角関係
ユーザー flippergoflippergo
提出日時 2024-12-24 07:39:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 5,000 ms
コード長 964 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 77,760 KB
最終ジャッジ日時 2024-12-24 07:39:46
合計ジャッジ時間 3,438 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
76,420 KB
testcase_01 AC 121 ms
77,116 KB
testcase_02 AC 126 ms
77,132 KB
testcase_03 AC 115 ms
77,040 KB
testcase_04 AC 114 ms
77,528 KB
testcase_05 AC 150 ms
77,484 KB
testcase_06 AC 140 ms
76,724 KB
testcase_07 AC 196 ms
77,760 KB
testcase_08 AC 137 ms
77,016 KB
testcase_09 AC 43 ms
54,188 KB
testcase_10 AC 96 ms
76,860 KB
testcase_11 AC 44 ms
54,920 KB
testcase_12 AC 107 ms
77,408 KB
testcase_13 AC 89 ms
76,852 KB
testcase_14 AC 62 ms
68,144 KB
testcase_15 AC 44 ms
55,540 KB
testcase_16 AC 42 ms
55,232 KB
testcase_17 AC 43 ms
54,264 KB
testcase_18 AC 44 ms
54,240 KB
testcase_19 AC 44 ms
55,952 KB
testcase_20 AC 44 ms
54,588 KB
testcase_21 AC 46 ms
54,924 KB
testcase_22 AC 45 ms
54,728 KB
testcase_23 AC 43 ms
54,796 KB
testcase_24 AC 44 ms
54,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M = map(int,input().split())
G = {i:set() for i in range(N)}
for _ in range(M):
    a,b = map(int,input().split())
    G[a].add(b)
    G[b].add(a)
ans = 0
for i in range(N-3):
    for j in range(i+1,N-2):
        for k in range(j+1,N-1):
            for l in range(k+1,N):
                if len(G[i]&set([j,k,l]))==2 and len(G[j]&set([i,k,l]))==2 and len(G[k]&set([i,j,l]))==2 and len(G[l]&set([i,j,k]))==2:
                    col = {i:1,j:0,k:0,l:0}
                    que = deque([i])
                    while que:
                        x = que.popleft()
                        A = set([i,j,k,l])
                        A.remove(x)
                        for y in G[x]&A:
                            if col[y]==0:
                                col[y] = 1
                                que.append(y)
                    if sum(col.values())==4:
                        ans += 1
                else:continue
print(ans)
0