結果

問題 No.488 四角関係
ユーザー maspymaspy
提出日時 2023-07-22 16:41:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 772 ms / 5,000 ms
コード長 711 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 73,524 KB
最終ジャッジ日時 2024-09-22 16:21:26
合計ジャッジ時間 15,867 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 622 ms
57,548 KB
testcase_01 AC 601 ms
51,240 KB
testcase_02 AC 626 ms
56,116 KB
testcase_03 AC 556 ms
45,780 KB
testcase_04 AC 572 ms
48,332 KB
testcase_05 AC 640 ms
60,076 KB
testcase_06 AC 739 ms
73,412 KB
testcase_07 AC 747 ms
73,524 KB
testcase_08 AC 772 ms
73,276 KB
testcase_09 AC 512 ms
44,240 KB
testcase_10 AC 527 ms
45,008 KB
testcase_11 AC 513 ms
44,232 KB
testcase_12 AC 522 ms
44,236 KB
testcase_13 AC 529 ms
44,624 KB
testcase_14 AC 524 ms
44,360 KB
testcase_15 AC 516 ms
44,240 KB
testcase_16 AC 520 ms
44,492 KB
testcase_17 AC 511 ms
43,856 KB
testcase_18 AC 511 ms
44,236 KB
testcase_19 AC 511 ms
44,492 KB
testcase_20 AC 517 ms
44,496 KB
testcase_21 AC 515 ms
44,364 KB
testcase_22 AC 518 ms
44,368 KB
testcase_23 AC 518 ms
44,104 KB
testcase_24 AC 519 ms
44,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np
import itertools

N,M = map(int,readline().split())
m = map(int,read().split())
AB = zip(m,m)

G = np.zeros((N,N),np.bool_)
for a,b in AB:
    G[a,b] = 1
    G[b,a] = 1

ABCD = np.array(list(itertools.combinations(range(N),4)))

if ABCD.shape[0] == 0:
    print(0)
    exit()

def deg(i):
    d = np.zeros(ABCD.shape[0],np.int32)
    for j in range(4):
        if i == j:
            continue
        d += G[ABCD[:,i], ABCD[:,j]]
    return d

is_ok = np.ones(ABCD.shape[0],np.bool_)
for i in range(4):
    is_ok &= deg(i) == 2

answer = np.count_nonzero(is_ok)
print(answer)
0