結果

問題 No.2160 みたりのDominator
ユーザー googol_S0googol_S0
提出日時 2022-12-11 02:48:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 5,817 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 306,032 KB
最終ジャッジ日時 2024-04-23 02:58:58
合計ジャッジ時間 45,189 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,528 KB
testcase_01 AC 971 ms
303,680 KB
testcase_02 AC 41 ms
54,400 KB
testcase_03 AC 44 ms
55,560 KB
testcase_04 AC 44 ms
55,552 KB
testcase_05 WA -
testcase_06 AC 42 ms
55,552 KB
testcase_07 AC 46 ms
56,320 KB
testcase_08 AC 55 ms
65,664 KB
testcase_09 AC 56 ms
66,432 KB
testcase_10 AC 54 ms
65,152 KB
testcase_11 AC 51 ms
65,408 KB
testcase_12 AC 54 ms
65,152 KB
testcase_13 AC 45 ms
56,192 KB
testcase_14 AC 45 ms
56,320 KB
testcase_15 AC 46 ms
55,424 KB
testcase_16 AC 55 ms
66,432 KB
testcase_17 AC 53 ms
64,924 KB
testcase_18 AC 56 ms
66,176 KB
testcase_19 AC 56 ms
66,816 KB
testcase_20 AC 61 ms
67,456 KB
testcase_21 AC 58 ms
66,816 KB
testcase_22 AC 59 ms
66,432 KB
testcase_23 AC 69 ms
71,040 KB
testcase_24 AC 46 ms
56,320 KB
testcase_25 AC 47 ms
56,960 KB
testcase_26 AC 62 ms
65,536 KB
testcase_27 AC 45 ms
57,216 KB
testcase_28 AC 44 ms
56,192 KB
testcase_29 AC 44 ms
56,192 KB
testcase_30 AC 43 ms
56,064 KB
testcase_31 AC 44 ms
55,808 KB
testcase_32 AC 45 ms
55,680 KB
testcase_33 AC 39 ms
54,144 KB
testcase_34 AC 855 ms
296,276 KB
testcase_35 AC 41 ms
54,144 KB
testcase_36 AC 42 ms
54,528 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 1,058 ms
296,916 KB
testcase_41 AC 1,047 ms
293,304 KB
testcase_42 AC 676 ms
240,480 KB
testcase_43 AC 876 ms
289,476 KB
testcase_44 AC 1,080 ms
304,116 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 725 ms
261,140 KB
testcase_52 AC 993 ms
298,472 KB
testcase_53 AC 1,050 ms
306,032 KB
testcase_54 AC 685 ms
230,736 KB
testcase_55 AC 730 ms
247,512 KB
testcase_56 AC 643 ms
236,712 KB
testcase_57 AC 657 ms
250,660 KB
testcase_58 AC 735 ms
262,492 KB
testcase_59 AC 671 ms
249,880 KB
testcase_60 AC 655 ms
257,140 KB
testcase_61 AC 681 ms
256,184 KB
testcase_62 AC 762 ms
263,168 KB
testcase_63 AC 702 ms
250,932 KB
testcase_64 AC 630 ms
243,752 KB
testcase_65 AC 418 ms
157,968 KB
testcase_66 AC 442 ms
164,484 KB
testcase_67 AC 496 ms
167,544 KB
testcase_68 AC 705 ms
247,652 KB
testcase_69 AC 552 ms
190,888 KB
testcase_70 AC 716 ms
249,880 KB
testcase_71 AC 353 ms
143,464 KB
testcase_72 AC 532 ms
193,608 KB
testcase_73 AC 701 ms
253,644 KB
testcase_74 AC 666 ms
242,632 KB
testcase_75 AC 234 ms
122,204 KB
testcase_76 AC 197 ms
109,496 KB
testcase_77 AC 461 ms
184,708 KB
testcase_78 AC 526 ms
198,536 KB
testcase_79 WA -
testcase_80 WA -
testcase_81 WA -
testcase_82 WA -
testcase_83 AC 275 ms
141,148 KB
61_evil_bias_nocross_01.txt AC 1,047 ms
294,804 KB
61_evil_bias_nocross_02.txt AC 1,021 ms
293,508 KB
61_evil_bias_nocross_03.txt AC 651 ms
241,504 KB
61_evil_bias_nocross_04.txt AC 899 ms
297,156 KB
61_evil_bias_nocross_05.txt AC 989 ms
287,024 KB
61_evil_bias_nocross_06.txt AC 1,058 ms
295,476 KB
61_evil_bias_nocross_07.txt AC 718 ms
262,100 KB
61_evil_bias_nocross_08.txt AC 986 ms
306,604 KB
61_evil_bias_nocross_09.txt AC 995 ms
288,136 KB
61_evil_bias_nocross_10.txt AC 627 ms
227,264 KB
61_evil_bias_nocross_11.txt AC 812 ms
280,156 KB
61_evil_bias_nocross_12.txt AC 984 ms
308,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
def scc(N,edges):
    M=len(edges)
    start=[0]*(N+1)
    elist=[0]*M
    for e in edges:
        start[e[0]+1]+=1
    for i in range(1,N+1):
        start[i]+=start[i-1]
    counter=start[:]
    for e in edges:
        elist[counter[e[0]]]=e[1]
        counter[e[0]]+=1
    visited=[]
    low=[0]*N
    Ord=[-1]*N
    ids=[0]*N
    NG=[0,0]
    def dfs(v):
        stack=[(v,-1,0),(v,-1,1)]
        while stack:
            v,bef,t=stack.pop()
            if t:
                if bef!=-1 and Ord[v]!=-1:
                    low[bef]=min(low[bef],Ord[v])
                    stack.pop()
                    continue
                low[v]=NG[0]
                Ord[v]=NG[0]
                NG[0]+=1
                visited.append(v)
                for i in range(start[v],start[v+1]):
                    to=elist[i]
                    if Ord[to]==-1:
                        stack.append((to,v,0))
                        stack.append((to,v,1))
                    else:
                        low[v]=min(low[v],Ord[to])
            else:
                if low[v]==Ord[v]:
                    while(True):
                        u=visited.pop()
                        Ord[u]=N
                        ids[u]=NG[1]
                        if u==v:
                            break
                    NG[1]+=1
                low[bef]=min(low[bef],low[v])
    for i in range(N):
        if Ord[i]==-1:
            dfs(i)
    for i in range(N):
        ids[i]=NG[1]-1-ids[i]
    group_num=NG[1]
    counts=[0]*group_num
    for x in ids:
        counts[x]+=1
    groups=[[] for i in range(group_num)]
    for i in range(N):
        groups[ids[i]].append(i)
    return groups

N1,N2,N3,M=map(int,input().split())
NN=[N1+2,N2+2,N3+2]
NNN=[0,N1+2,N1+N2+4,N1+N2+N3+6]
K=N1+N2+N3
N=K+6
X=[]
E=[(0,N1+2),(N1+2,N1+N2+4),(N1+1,N1+N2+3),(N1+N2+3,N1+N2+N3+5)]
C=[]
for i in range(N1+2):
  C.append(1)
for i in range(N2+2):
  C.append(2)
for i in range(N3+2):
  C.append(3)
for i in range(4):
  E.append((E[i][1],E[i][0]))
for i in range(N1+1):
  E.append((i,i+1))
for i in range(N2+1):
  i+=N1+2
  E.append((i,i+1))
for i in range(N3+1):
  i+=N1+N2+4
  E.append((i,i+1))
for i in range(M):
  u,v=map(int,input().split())
  X.append((u,v))
  u-=1
  v-=1
  if u<N1:
    u+=1
  elif u<N1+N2:
    u+=3
  elif u<N1+N2+N3:
    u+=5
  elif u==K:
    u=0
  else:
    u=N-1
  u,v=v,u
  if u<N1:
    u+=1
  elif u<N1+N2:
    u+=3
  elif u<N1+N2+N3:
    u+=5
  elif u==K:
    u=0
  else:
    u=N-1
  E.append((u,v))
  E.append((v,u))
S=scc(N,E)
L=len(S)
V=[0]*L
P=[[1234567,-1,1234567,-1,1234567,-1] for i in range(L)]
for i in range(L):
  for j in range(len(S[i])):
    v=S[i][j]
    c=C[v]
    if c==3:
      V[i]|=4
    else:
      V[i]|=c
    w=c-1
    P[i][w*2]=min(P[i][w*2],v)
    P[i][w*2+1]=max(P[i][w*2+1],v)
  P[i]=tuple(P[i])
Q=[]
R=[[],[],[]]
for i in range(L):
  if V[i]==7:
    Q.append(P[i])
    for j in range(3):
      R[j].append((P[i][2*j],P[i][2*j+1]))
  for j in range(3):
    if P[i][j*2+1]-P[i][j*2]==NN[j]+1:
      print(0)
      exit()
for i in range(3):
  R[i].sort()
T=[[] for i in range(len(R[0]))]
for i in range(L):
  if V[i]==7:
    continue
  if P[i][1]!=-1:
    v=bisect_left(R[0],(P[i][0],P[i][1]))-1
    T[v].append(P[i])
  elif P[i][3]!=-1:
    v=bisect_left(R[1],(P[i][2],P[i][3]))-1
    T[v].append(P[i])
  else:
    v=bisect_left(R[2],(P[i][4],P[i][5]))-1
    T[v].append(P[i])
ANS=0
for I in range(len(T)-1):
  Y=[[R[0][I][1]+1,R[0][I+1][0]],[R[1][I][1]+1,R[1][I+1][0]],[R[2][I][1]+1,R[2][I+1][0]]]
  Z=[[],[],[]]
  ZZ=[[],[],[]]
  for i in range(3):
    for j in range(Y[i][0],Y[i][1]):
      Z[i].append((0,-1,-1))
      ZZ[i].append((i+1)*1000000+j)
    ZZ[i].append((i+1)*1000000+500000)
  for i in range(len(T[I])):
    if T[I][i][1]>=0 and T[I][i][3]>=0:
      v=T[I][i][1]-Y[0][0]
      w=T[I][i][3]-Y[1][0]
      Z[0][v]=(Z[0][v][0],1,w)
      Z[1][w]=(Z[1][w][0],0,v)
      ZZ[0][v]=i
      ZZ[1][w]=i
    elif T[I][i][1]>=0 and T[I][i][5]>=0:
      v=T[I][i][1]-Y[0][0]
      w=T[I][i][5]-Y[2][0]
      Z[0][v]=(Z[0][v][0],2,w)
      Z[2][w]=(Z[2][w][0],0,v)
      ZZ[0][v]=i
      ZZ[2][w]=i
    elif T[I][i][3]>=0 and T[I][i][5]>=0:
      v=T[I][i][3]-Y[1][0]
      w=T[I][i][5]-Y[2][0]
      Z[1][v]=(Z[1][v][0],2,w)
      Z[2][w]=(Z[2][w][0],1,v)
      ZZ[1][v]=i
      ZZ[2][w]=i
    for j in range(3):
      if T[I][i][j*2]<T[I][i][j*2+1]:
        for k in range(T[I][i][j*2]+1,T[I][i][j*2+1]+1):
          k-=Y[j][0]
          Z[j][k]=(1,Z[j][k][1],Z[j][k][2])
  W=[]
  a,b,c=Y[0][1]-Y[0][0],Y[1][1]-Y[1][0],Y[2][1]-Y[2][0]
  W=[(a,b,c,0)]
  abc=[a,b,c]
  while a+b+c>0:
    if a>0:
      if a==Y[0][1]-Y[0][0]:
        a-=1
        abc[0]-=1
        W.append((a,b,c,0))
        continue
      if not(Z[0][a][1]!=-1 and abc[Z[0][a][1]]>Z[0][a][2]):
        a-=1
        abc[0]-=1
        W.append((a,b,c,0))
        continue
    if b>0:
      if b==Y[1][1]-Y[1][0]:
        b-=1
        abc[1]-=1
        W.append((a,b,c,1))
        continue
      if not(Z[1][b][1]!=-1 and abc[Z[1][b][1]]>Z[1][b][2]):
        b-=1
        abc[1]-=1
        W.append((a,b,c,1))
        continue
    c-=1
    abc[2]-=1
    W.append((a,b,c,2))
  for i in range(len(W)):
    W[i]=list(W[i])
    if ZZ[0][W[i][0]]==ZZ[1][W[i][1]]:
      W[i].append(0b10011001)
    elif ZZ[0][W[i][0]]==ZZ[2][W[i][2]]:
      W[i].append(0b10100101)
    elif ZZ[1][W[i][1]]==ZZ[2][W[i][2]]:
      W[i].append(0b11000011)
    else:
      W[i].append(0b11111111)
    W[i]=tuple(W[i])
  dp=[[0]*8 for i in range(len(W))]
  dp[0][7]=1
  for i in range(len(W)-1):
    for j in range(8):
      jj=j&(~(1<<W[i+1][3]))
      kk=(jj^j)>>W[i+1][3]
      for k in range(kk+1):
        jjj=jj|(k<<W[i+1][3])
        if (W[i+1][4]>>jjj)&1:
          dp[i+1][jjj]+=dp[i][j]
  ANS+=sum(dp[-1])
print(ANS)
0