結果

問題 No.1813 Magical Stones
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-22 14:43:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,705 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 126,108 KB
最終ジャッジ日時 2024-11-22 14:43:42
合計ジャッジ時間 13,549 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 WA -
testcase_03 AC 128 ms
107,164 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 164 ms
78,764 KB
testcase_07 AC 43 ms
52,864 KB
testcase_08 AC 74 ms
68,224 KB
testcase_09 AC 90 ms
74,368 KB
testcase_10 AC 55 ms
61,312 KB
testcase_11 AC 228 ms
88,564 KB
testcase_12 AC 49 ms
52,992 KB
testcase_13 AC 43 ms
52,480 KB
testcase_14 AC 127 ms
107,068 KB
testcase_15 AC 594 ms
120,604 KB
testcase_16 AC 624 ms
120,852 KB
testcase_17 WA -
testcase_18 AC 652 ms
121,500 KB
testcase_19 AC 598 ms
121,112 KB
testcase_20 AC 643 ms
121,112 KB
testcase_21 AC 606 ms
121,496 KB
testcase_22 AC 636 ms
121,268 KB
testcase_23 AC 607 ms
120,728 KB
testcase_24 AC 117 ms
77,312 KB
testcase_25 AC 198 ms
83,400 KB
testcase_26 AC 175 ms
79,140 KB
testcase_27 AC 482 ms
108,736 KB
testcase_28 AC 484 ms
111,896 KB
testcase_29 AC 531 ms
112,204 KB
testcase_30 AC 481 ms
111,188 KB
testcase_31 AC 594 ms
119,312 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 154 ms
78,080 KB
testcase_35 WA -
testcase_36 AC 139 ms
77,952 KB
testcase_37 AC 200 ms
84,096 KB
testcase_38 AC 207 ms
98,664 KB
testcase_39 AC 476 ms
110,028 KB
testcase_40 AC 164 ms
78,464 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 182 ms
79,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
e=[]
for i in range(m):
  a,b=map(int,input().split())
  e+=[(a-1,b-1)]

class SCC():
  def __init__(self,n):
    self.n=n
    self.e=[[] for i in range(self.n)]
    self.re=[[] for i in range(self.n)]
    return
  
  def add_edge(self,s,t):
    self.e[s]+=[t]
    self.re[t]+=[s]
    return
  
  def scc(self):
    v=[0]*self.n
    g=[0]*self.n
    o=[]
    for i in range(self.n):
      if v[i]==0:
        q=[i]
        while len(q)>0:
          s=q[-1]
          v[s]=1
          while g[s]<len(self.e[s]):
            t=self.e[s][g[s]]
            if v[t]==0:
              break
            g[s]+=1
          if g[s]<len(self.e[s]):
            q+=[t]
          else:
            o+=[s]
            q.pop()
    c=[-1]*self.n
    p=0
    for i in o[::-1]:
      if c[i]==-1:
        s=i
        c[s]=p
        q=[s]
        for s in q:
          for t in self.re[s]:
            if c[t]==-1:
              c[t]=p
              q+=[t]
        p+=1
    l=[[] for i in range(p)]
    for i in range(self.n):
      l[c[i]]+=[i]
    d=[0]*p
    for s in range(self.n):
      for t in self.e[s]:
        if c[s]!=c[t]:
          d[c[t]]+=1
    ts=[]
    q=[i for i in range(p) if d[i]==0]
    for v in q:
      ts+=[v]
      for s in l[v]:
        for t in self.e[s]:
          if c[s]!=c[t]:
            d[c[t]]-=1
            if d[c[t]]==0:
              q+=[c[t]]
    return [l[ts[i]] for i in range(p)]

g=SCC(n)
for a,b in e:
  g.add_edge(a,b)
L=g.scc()
l=len(L)
c=[0]*n
for i in range(l):
  for j in L[i]:
    c[j]=i
do=[0]*l
di=[0]*l
for a,b in e:
  if c[a]!=c[b]:
    do[c[a]]=1
    di[c[b]]=1

print(max(sum(do[i]==0 for i in range(l)),sum(di[i]==0 for i in range(l))))
0