結果

問題 No.2522 Fall in love, Girls!
ユーザー MasKoaTSMasKoaTS
提出日時 2023-08-28 15:40:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 1,265 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 85,076 KB
最終ジャッジ日時 2024-09-25 13:16:38
合計ジャッジ時間 4,056 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,272 KB
testcase_01 AC 38 ms
53,684 KB
testcase_02 AC 39 ms
52,884 KB
testcase_03 AC 228 ms
84,624 KB
testcase_04 AC 39 ms
52,456 KB
testcase_05 AC 39 ms
52,464 KB
testcase_06 AC 64 ms
69,416 KB
testcase_07 AC 54 ms
62,564 KB
testcase_08 AC 71 ms
71,232 KB
testcase_09 AC 55 ms
58,448 KB
testcase_10 AC 61 ms
67,996 KB
testcase_11 AC 60 ms
67,828 KB
testcase_12 AC 61 ms
59,928 KB
testcase_13 AC 82 ms
72,068 KB
testcase_14 AC 251 ms
84,660 KB
testcase_15 AC 230 ms
84,432 KB
testcase_16 AC 243 ms
85,076 KB
testcase_17 AC 92 ms
76,820 KB
testcase_18 AC 96 ms
77,980 KB
testcase_19 AC 90 ms
78,148 KB
testcase_20 AC 70 ms
66,652 KB
testcase_21 AC 95 ms
76,544 KB
testcase_22 AC 73 ms
66,140 KB
testcase_23 AC 87 ms
75,816 KB
testcase_24 AC 87 ms
78,304 KB
testcase_25 AC 69 ms
71,552 KB
testcase_26 AC 64 ms
70,284 KB
testcase_27 AC 53 ms
61,688 KB
testcase_28 AC 56 ms
71,348 KB
testcase_29 AC 74 ms
67,564 KB
testcase_30 AC 87 ms
76,916 KB
testcase_31 AC 75 ms
70,816 KB
testcase_32 AC 59 ms
70,568 KB
testcase_33 AC 66 ms
62,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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


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

toposo_st = set([])
for edge in edges:
    toposo_st |= set(edge)
toposo_ids = { x : i for i, x in enumerate(toposo_st)}
t = len(toposo_st)

def can_set_left(s, i):
    for x, y in edges:
        if(toposo_ids[y] != i):
            continue
        if((s >> toposo_ids[x]) & 1):
            return False
    return True

dp = [-1] * (1 << t)
dp[0] = 1
def count_toposo(s):
    global dp
    if(dp[s] == -1):
        dp[s] = 0
        for i in range(t):
            if not((s >> i) & 1):
                continue
            if(can_set_left(s, i)):
                dp[s] += count_toposo(s - (1 << i))
        dp[s] %= MOD
    return dp[s]

ans = 0
p1 = nPk(N - 1, N - t)
p2 = nPk(N - 1, N - t - 1)
for i in range(M, N):
    if(i in toposo_st):
        id = toposo_ids[i]
        if not(can_set_left((1 << t) - 1, id)):
            continue
        ans += p1 * count_toposo((1 << t) - 1 - (1 << id)) % MOD
    else:
        ans += p2 * count_toposo((1 << t) - 1) % MOD
ans %= MOD
print(ans)
0