結果
問題 | No.1813 Magical Stones |
ユーザー | sasa8uyauya |
提出日時 | 2024-11-22 13:31:42 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,065 bytes |
コンパイル時間 | 396 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 133,256 KB |
最終ジャッジ日時 | 2024-11-22 13:32:02 |
合計ジャッジ時間 | 14,239 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
52,480 KB |
testcase_01 | AC | 45 ms
52,480 KB |
testcase_02 | AC | 42 ms
52,608 KB |
testcase_03 | AC | 138 ms
116,476 KB |
testcase_04 | AC | 41 ms
52,608 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 137 ms
116,620 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 475 ms
126,732 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 42 ms
52,736 KB |
testcase_33 | AC | 42 ms
53,504 KB |
testcase_34 | WA | - |
testcase_35 | AC | 145 ms
79,488 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 141 ms
77,056 KB |
testcase_42 | AC | 149 ms
79,360 KB |
testcase_43 | WA | - |
ソースコード
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 d=[0]*l E=[[] for i in range(l)] for a,b in e: if c[a]!=c[b]: E[c[a]]+=[c[b]] d[c[b]]+=1 v=[0]*l f=[0]*l q=[i for i in range(l) if d[i]==0] for s in q: if len(E[s])>0: f[s]+=1 for t in E[s]: if v[t]==0: v[t]=1 f[t]+=1 q+=[t] E=[[] for i in range(l)] for a,b in e: if c[a]!=c[b]: E[c[a]]+=[c[b]] E[c[b]]+=[c[a]] v=[0]*l v[0]=1 q=[0] for s in q: for t in E[s]: if v[t]==0: v[t]=1 q+=[t] print(sum(f[i]!=2 for i in range(l))-(0 not in v))