結果

問題 No.2522 Fall in love, Girls!
ユーザー MasKoaTSMasKoaTS
提出日時 2023-08-26 23:56:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 1,225 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 85,120 KB
最終ジャッジ日時 2024-09-25 13:16:01
合計ジャッジ時間 5,231 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 384 ms
84,792 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 85 ms
76,644 KB
testcase_07 AC 61 ms
62,208 KB
testcase_08 AC 101 ms
76,412 KB
testcase_09 AC 71 ms
60,160 KB
testcase_10 AC 89 ms
72,064 KB
testcase_11 AC 89 ms
72,448 KB
testcase_12 AC 61 ms
58,496 KB
testcase_13 AC 66 ms
67,584 KB
testcase_14 AC 396 ms
84,976 KB
testcase_15 AC 416 ms
84,864 KB
testcase_16 AC 410 ms
85,120 KB
testcase_17 AC 118 ms
80,128 KB
testcase_18 AC 122 ms
78,208 KB
testcase_19 AC 119 ms
80,184 KB
testcase_20 AC 100 ms
73,216 KB
testcase_21 AC 108 ms
76,672 KB
testcase_22 AC 92 ms
71,436 KB
testcase_23 AC 116 ms
78,196 KB
testcase_24 AC 118 ms
80,044 KB
testcase_25 AC 74 ms
71,040 KB
testcase_26 AC 67 ms
71,168 KB
testcase_27 AC 65 ms
63,360 KB
testcase_28 AC 52 ms
68,224 KB
testcase_29 AC 102 ms
76,800 KB
testcase_30 AC 112 ms
80,384 KB
testcase_31 AC 104 ms
76,624 KB
testcase_32 AC 71 ms
72,064 KB
testcase_33 AC 69 ms
62,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
MOD = 998244353

n, m, _ = map(int, input().split())
edges = [[x - 1 for x in map(int, input().split())] for _ in [0] * _]

st = set([])
for edge in edges:
    st |= set(edge)
lis = list(st)
di = { x : i for i, x in enumerate(lis)}
t = len(lis)

graph = [[0] * t for _ in [0] * t]
for x, y in edges:
    graph[di[x]][di[y]] = 1

dp = [-1] * (1 << t)
dp[0] = 1
def calc_dp(s):
    global dp
    if(dp[s] == -1):
        dp[s] = 0
        for i in range(t):
            if not((s >> i) & 1):
                continue
            if all(i == j or not((s >> j) & 1) or graph[j][i] == 0 for j in range(t)):
                dp[s] += calc_dp(s - (1 << i))
        dp[s] %= MOD
    return dp[s]

def nPk(n, k):
    ret = 1
    for i in range(n, n - k, -1):
        ret *= i
        ret %= MOD
    return ret

ans = nPk(n, n - t) * calc_dp((1 << t) - 1) % MOD
p1 = nPk(n - 1, n - t)
p2 = nPk(n - 1, n - t - 1)
for i in range(m):
    if(i in st):
        id = di[i]
        if any(id != j and graph[j][id] == 1 for j in range(t)):
            continue
        ans -= p1 * calc_dp((1 << t) - 1 - (1 << id)) % MOD
    else:
        ans -= p2 * calc_dp((1 << t) - 1) % MOD
    ans %= MOD

print(ans)
0