結果

問題 No.1116 Cycles of Dense Graph
ユーザー vwxyzvwxyz
提出日時 2021-09-15 20:16:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 5,238 bytes
コンパイル時間 1,324 ms
コンパイル使用メモリ 87,320 KB
実行使用メモリ 104,304 KB
最終ジャッジ日時 2023-09-11 07:03:57
合計ジャッジ時間 22,744 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 273 ms
98,988 KB
testcase_01 WA -
testcase_02 AC 331 ms
98,416 KB
testcase_03 AC 300 ms
97,600 KB
testcase_04 AC 299 ms
97,608 KB
testcase_05 AC 353 ms
98,904 KB
testcase_06 AC 397 ms
98,592 KB
testcase_07 AC 360 ms
98,904 KB
testcase_08 AC 294 ms
97,652 KB
testcase_09 AC 302 ms
97,996 KB
testcase_10 AC 307 ms
97,968 KB
testcase_11 AC 392 ms
99,216 KB
testcase_12 AC 375 ms
98,828 KB
testcase_13 AC 292 ms
97,036 KB
testcase_14 AC 318 ms
98,108 KB
testcase_15 AC 307 ms
97,736 KB
testcase_16 AC 353 ms
98,920 KB
testcase_17 AC 297 ms
97,692 KB
testcase_18 AC 319 ms
98,744 KB
testcase_19 AC 385 ms
99,480 KB
testcase_20 AC 360 ms
98,832 KB
testcase_21 AC 325 ms
99,076 KB
testcase_22 AC 605 ms
99,668 KB
testcase_23 AC 311 ms
97,836 KB
testcase_24 TLE -
testcase_25 AC 282 ms
96,216 KB
testcase_26 TLE -
testcase_27 AC 300 ms
97,484 KB
testcase_28 AC 331 ms
98,792 KB
testcase_29 AC 286 ms
96,892 KB
testcase_30 AC 276 ms
94,396 KB
testcase_31 AC 276 ms
94,124 KB
testcase_32 AC 281 ms
94,112 KB
testcase_33 AC 281 ms
94,464 KB
testcase_34 AC 282 ms
94,408 KB
testcase_35 AC 274 ms
94,404 KB
testcase_36 TLE -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import functools
import heapq
import itertools
import math
import random
import sys
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import degrees, gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines

def Extended_Euclid(n,m):
    stack=[]
    while m:
        stack.append((n,m))
        n,m=m,n%m
    if n>=0:
        x,y=1,0
    else:
        x,y=-1,0
    for i in range(len(stack)-1,-1,-1):
        n,m=stack[i]
        x,y=y,x-(n//m)*y
    return x,y

class MOD:
    def __init__(self,p,e=1):
        self.p=p
        self.e=e
        self.mod=self.p**self.e

    def Pow(self,a,n):
        a%=self.mod
        if n>=0:
            return pow(a,n,self.mod)
        else:
            assert math.gcd(a,self.mod)==1
            x=Extended_Euclid(a,self.mod)[0]
            return pow(x,-n,self.mod)

    def Build_Fact(self,N):
        assert N>=0
        self.factorial=[1]
        self.cnt=[0]*(N+1)
        for i in range(1,N+1):
            ii=i
            self.cnt[i]=self.cnt[i-1]
            while ii%self.p==0:
                ii//=self.p
                self.cnt[i]+=1
            self.factorial.append((self.factorial[-1]*ii)%self.mod)
        self.factorial_inve=[None]*(N+1)
        self.factorial_inve[-1]=self.Pow(self.factorial[-1],-1)
        for i in range(N-1,-1,-1):
            ii=i+1
            while ii%self.p==0:
                ii//=self.p
            self.factorial_inve[i]=(self.factorial_inve[i+1]*ii)%self.mod

    def Fact(self,N):
        if N<0:
            return 0
        return self.factorial[N]*pow(self.p,self.cnt[N],self.mod)%self.mod

    def Fact_Inve(self,N):
        if self.cnt[N]:
            return None
        return self.factorial_inve[N]

    def Comb(self,N,K,divisible_count=False):
        if K<0 or K>N:
            return 0
        retu=self.factorial[N]*self.factorial_inve[K]*self.factorial_inve[N-K]%self.mod
        cnt=self.cnt[N]-self.cnt[N-K]-self.cnt[K]
        if divisible_count:
            return retu,cnt
        else:
            retu*=pow(self.p,cnt,self.mod)
            retu%=self.mod
            return retu

def Zip(lst):
    unzip=sorted(list(set(lst)))
    zip={x:i for i,x in enumerate(unzip)}
    return zip,unzip

class UnionFind:
    def __init__(self,n):
        self.n=n
        self.parents=[-1]*n

    def Find(self,x):
        stack=[]
        while self.parents[x]>=0:
            stack.append(x)
            x=self.parents[x]
        for y in stack:
            self.parents[y]=x
        return x

    def Union(self,x,y):
        x=self.Find(x)
        y=self.Find(y)
        if x==y:
            return
        if self.parents[x]>self.parents[y]:
            x,y=y,x
        self.parents[x]+=self.parents[y]
        self.parents[y]=x

    def Size(self,x):
        return -self.parents[self.Find(x)]

    def Same(self,x,y):
        return self.Find(x)==self.Find(y)

    def Members(self,x):
        root = self.Find(x)
        return [i for i in range(self.n) if self.Find(i)==root]

    def Roots(self):
        return [i for i, x in enumerate(self.parents) if x<0]

    def Group_Count(self):
        return len(self.Roots())

    def All_Group_Members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.Find(member)].append(member)
        return group_members

    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.All_Group_Members().items())

N,M=map(int,readline().split())
edges=[]
for _ in range(M):
    a,b=map(int,readline().split())
    a-=1;b-=1
    edges.append((a,b))
ans=0
mod=998244353
MD=MOD(mod)
MD.Build_Fact(N)
@lru_cache(maxsize=None)
def f(n,c):
    s=0
    if c>=2:
        s+=MD.Fact(c-1)
    elif n!=N-1:
        s+=1
    for i in range(c+1,n+1):
        s+=MD.Comb(n-c,i-c)*MD.Fact(i-1)
        s%=mod
    s*=pow(2,c-1,mod)
    s%=mod
    return s
for i in range(3,N+1):
    ans+=MD.Comb(N,i)*MD.Fact(i-1)
    ans%=mod
ans*=MD.Pow(2,-1)
ans%=mod
for bit in range(1,1<<M):
    points=[]
    pop_cnt=0
    for i in range(N):
        if bit>>i&1:
            a,b=edges[i]
            points.append(a)
            points.append(b)
            pop_cnt+=1
    zip,unzip=Zip(points)
    l=len(zip)
    UF=UnionFind(l)
    cnt=[0]*l
    cycle=False
    for i in range(N):
        if bit>>i&1:
            a,b=edges[i]
            UF.Union(zip[a],zip[b])
            cnt[zip[a]]+=1
            cnt[zip[b]]+=1
    for c in cnt:
        if c>=3:
            continue
    if cnt.count(2)==l and UF.Group_Count()==1:
        if pop_cnt%2==0:
            ans+=1
        else:
            ans-=1
    else:
        if pop_cnt%2==0:
            ans+=f(N-pop_cnt,UF.Group_Count())
        else:
            ans-=f(N-pop_cnt,UF.Group_Count())
    ans%=mod
print(ans)
0