結果
問題 | No.679 不思議マーケット |
ユーザー | mkawa2 |
提出日時 | 2020-01-08 23:07:39 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,948 bytes |
コンパイル時間 | 90 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 44,964 KB |
最終ジャッジ日時 | 2024-11-23 03:14:33 |
合計ジャッジ時間 | 12,052 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 521 ms
44,848 KB |
testcase_01 | AC | 513 ms
44,852 KB |
testcase_02 | AC | 517 ms
44,836 KB |
testcase_03 | AC | 529 ms
44,740 KB |
testcase_04 | AC | 520 ms
44,832 KB |
testcase_05 | AC | 525 ms
44,856 KB |
testcase_06 | AC | 518 ms
44,592 KB |
testcase_07 | AC | 514 ms
44,728 KB |
testcase_08 | AC | 523 ms
44,960 KB |
testcase_09 | WA | - |
testcase_10 | AC | 515 ms
44,848 KB |
testcase_11 | AC | 521 ms
44,848 KB |
testcase_12 | AC | 519 ms
44,744 KB |
testcase_13 | AC | 523 ms
44,708 KB |
testcase_14 | AC | 523 ms
44,852 KB |
testcase_15 | WA | - |
testcase_16 | AC | 522 ms
44,720 KB |
testcase_17 | WA | - |
ソースコード
import sys sys.setrecursionlimit(10 ** 6) # from itertools import * from bisect import * # from math import * from collections import * from heapq import * from random import * from decimal import * import numpy as np int1 = lambda x: int(x) - 1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def MI(): return map(int, sys.stdin.readline().split()) def MI1(): return map(int1, sys.stdin.readline().split()) def MF(): return map(float, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def LI1(): return list(map(int1, sys.stdin.readline().split())) def LF(): return list(map(float, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] dij = [(0, 1), (1, 0), (0, -1), (-1, 0)] def main(): def dfs1(u): for v in to[u]: if vis[v]:continue vis[v]=True dfs1(v) topo.append(u) def dfs2(u): vis[u]=True res=[u] for v in ot[u]: if vis[v]:continue res+=dfs2(v) return res def dfs3(u): for v in to[u]: if kill[v]:continue kill[v]=True dfs3(v) to=defaultdict(list) ot=defaultdict(list) root=[True]*n for _ in range(m): g,r=MI() g-=1 hh=LI1() for h in hh: to[h].append(g) ot[g].append(h) root[g]=False #print(to) #print(ot) topo=[] vis=[False]*n for u in range(n): if not root[u]:continue vis[u]=True dfs1(u) #print(topo) vis=[False]*n kill=[False]*n for u in topo[::-1]: if vis[u]:continue scc=dfs2(u) #print(scc) if len(scc)>1: for u in scc: kill[u]=True for u in range(n): if not kill[u]:continue dfs3(u) print(n-sum(kill)) n,m = MI() main()