結果

問題 No.2435 Order All Company
ユーザー ShirotsumeShirotsume
提出日時 2023-08-18 21:55:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,384 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 87,936 KB
最終ジャッジ日時 2024-05-06 03:56:32
合計ジャッジ時間 6,247 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,424 KB
testcase_01 AC 44 ms
55,296 KB
testcase_02 AC 43 ms
55,168 KB
testcase_03 AC 43 ms
55,808 KB
testcase_04 AC 58 ms
63,104 KB
testcase_05 AC 245 ms
87,680 KB
testcase_06 AC 258 ms
87,936 KB
testcase_07 AC 219 ms
81,664 KB
testcase_08 AC 258 ms
87,680 KB
testcase_09 AC 244 ms
87,808 KB
testcase_10 AC 75 ms
69,504 KB
testcase_11 WA -
testcase_12 AC 54 ms
63,104 KB
testcase_13 AC 64 ms
64,896 KB
testcase_14 AC 183 ms
87,808 KB
testcase_15 AC 190 ms
87,168 KB
testcase_16 WA -
testcase_17 AC 242 ms
87,552 KB
testcase_18 WA -
testcase_19 AC 121 ms
85,248 KB
testcase_20 AC 133 ms
87,040 KB
testcase_21 AC 147 ms
87,424 KB
testcase_22 AC 185 ms
87,168 KB
testcase_23 AC 115 ms
82,944 KB
testcase_24 AC 155 ms
87,296 KB
testcase_25 AC 172 ms
87,424 KB
testcase_26 WA -
testcase_27 AC 174 ms
87,296 KB
testcase_28 AC 137 ms
87,168 KB
testcase_29 WA -
testcase_30 AC 163 ms
87,168 KB
testcase_31 WA -
testcase_32 AC 44 ms
55,552 KB
testcase_33 WA -
testcase_34 AC 71 ms
69,888 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
def det(n, a, mod):
    ret = 1
    for i in range(n):
        if a[i][i] == 0:
            for j in range(i + 1, n):
                if a[j][i]:
                    break
            else:
                return 0
            a[j], a[i] = a[i], a[j]
            ret *= -1
            ret %= mod

        for j in range(n):
            if i < j:
                buf = a[j][i] * (pow(a[i][i], mod - 2, mod))
                buf %= mod
                for k in range(n):
                    a[j][k] -= a[i][k] * buf

                    a[j][k] %= mod
    for i in range(n):
        ret *= a[i][i]
        ret %= mod
    return ret
n, k = mi()
E = []
for _ in range(k):
    t = ii()
    E.append([li() for _ in range(t)])

ans = 0
for bit in range(1 << k):
    A = [[0] * n for _ in range(n)]
    cnt = 0
    for i in range(k):
        if 1 & (bit >> i):
            cnt += 1
            for a, b in E[i]:
                A[a - 1][b - 1] -= 1
                A[b - 1][a - 1] -= 1
                A[a - 1][a - 1] += 1
                A[b - 1][b - 1] += 1
    p = det(n - 1, A, mod)
    ans += pow(-1, cnt + 1) * p
    ans %= mod
print(ans)

0