結果

問題 No.2523 Trick Flower
ユーザー ShirotsumeShirotsume
提出日時 2023-10-25 12:33:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,691 ms / 4,000 ms
コード長 3,186 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 354,968 KB
最終ジャッジ日時 2024-09-25 05:50:18
合計ジャッジ時間 27,244 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,064 KB
testcase_01 AC 46 ms
55,936 KB
testcase_02 AC 47 ms
56,320 KB
testcase_03 AC 47 ms
55,808 KB
testcase_04 AC 47 ms
55,936 KB
testcase_05 AC 46 ms
56,064 KB
testcase_06 AC 47 ms
56,064 KB
testcase_07 AC 49 ms
57,216 KB
testcase_08 AC 143 ms
79,360 KB
testcase_09 AC 189 ms
79,872 KB
testcase_10 AC 50 ms
57,856 KB
testcase_11 AC 69 ms
72,448 KB
testcase_12 AC 85 ms
77,184 KB
testcase_13 AC 99 ms
77,824 KB
testcase_14 AC 80 ms
77,440 KB
testcase_15 AC 3,691 ms
353,536 KB
testcase_16 AC 3,434 ms
354,968 KB
testcase_17 AC 1,109 ms
274,540 KB
testcase_18 AC 348 ms
269,696 KB
testcase_19 AC 1,664 ms
236,888 KB
testcase_20 AC 1,572 ms
224,512 KB
testcase_21 AC 1,215 ms
215,424 KB
testcase_22 AC 1,277 ms
241,740 KB
testcase_23 AC 1,287 ms
228,736 KB
testcase_24 AC 1,129 ms
177,664 KB
testcase_25 AC 366 ms
256,896 KB
testcase_26 AC 2,197 ms
265,216 KB
testcase_27 AC 933 ms
264,576 KB
testcase_28 AC 1,335 ms
207,488 KB
testcase_29 AC 146 ms
114,776 KB
testcase_30 AC 997 ms
209,792 KB
testcase_31 AC 237 ms
83,328 KB
testcase_32 AC 437 ms
163,968 KB
testcase_33 AC 1,032 ms
255,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
sys.setrecursionlimit(10 ** 5 + 2)
n = ii()

a = li()

b = li()

c = li()
E = []
for i in range(n):
    E.append((c[i] - 1, i))
    
groups = scc(n, E)

leader = [0] * n
cnt = 0
for v in groups:
    for x in v:
        leader[x] = cnt
    cnt += 1
A = [0] * cnt
B = [0] * cnt

for i in range(n):
    A[leader[i]] += a[i]
    B[leader[i]] += b[i]
    
graph = [[] for _ in range(cnt)]
invgraph = [[] for _ in range(cnt)]
S = set()
for u, v in E:
    if leader[v] != leader[u]:
        S.add((leader[u], leader[v]))

for u, v in S:
    graph[u].append(v)

def f(x):
    dp = [0] * cnt
    r = [0] * cnt
    c = [0] * cnt
    visit = [False] * cnt
    def dfs(now):
        if visit[now]:
            return dp[now]
        visit[now] = True
        for to in graph[now]:
            r[now] += dfs(to)
            c[to] += 1
        dp[now] = min(0, A[now] - x * B[now] + r[now])
       
        return dp[now]
    
    
    for now in range(cnt):
        dfs(now)
        if c[now] == 0:
            if dp[now] == 0:
                pass
            else:
                return False
    return True
ok = 0
ng = 10 ** 15
while abs(ok - ng) > 1:
    mid = (ok + ng) // 2
    if f(mid):
        ok = mid
    else:
        ng = mid
        
print(ok)

        
0