結果
問題 | No.2522 Fall in love, Girls! |
ユーザー | MasKoaTS |
提出日時 | 2023-08-27 00:19:57 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,209 bytes |
コンパイル時間 | 226 ms |
コンパイル使用メモリ | 82,136 KB |
実行使用メモリ | 84,760 KB |
最終ジャッジ日時 | 2024-09-25 13:15:50 |
合計ジャッジ時間 | 4,393 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
60,772 KB |
testcase_01 | AC | 39 ms
52,696 KB |
testcase_02 | AC | 38 ms
53,372 KB |
testcase_03 | AC | 383 ms
84,760 KB |
testcase_04 | AC | 39 ms
53,252 KB |
testcase_05 | AC | 38 ms
53,236 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
ソースコード
import sys input = sys.stdin.readline MOD = 998244353 N, M, K = map(int, input().split()) edges = [[x - 1 for x in map(int, input().split())] for _ in [0] * K] 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 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 -= nPk(N - 1, N - t) * calc_dp((1 << t) - 1 - (1 << id)) % MOD else: ans -= nPk(N - 1, N - t - 1) * calc_dp((1 << t) - 1) % MOD ans %= MOD print(ans)