結果

問題 No.2523 Trick Flower
ユーザー ShirotsumeShirotsume
提出日時 2023-10-25 12:24:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 3,100 bytes
コンパイル時間 1,915 ms
コンパイル使用メモリ 80,628 KB
実行使用メモリ 278,844 KB
最終ジャッジ日時 2023-10-25 12:24:41
合計ジャッジ時間 11,789 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
56,116 KB
testcase_01 AC 41 ms
56,116 KB
testcase_02 AC 41 ms
56,116 KB
testcase_03 AC 40 ms
56,116 KB
testcase_04 AC 39 ms
56,116 KB
testcase_05 AC 41 ms
56,116 KB
testcase_06 AC 43 ms
56,116 KB
testcase_07 AC 44 ms
58,180 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 48 ms
58,200 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 56 ms
70,956 KB
testcase_14 WA -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 1,125 ms
278,844 KB
testcase_18 AC 361 ms
267,072 KB
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 AC 312 ms
214,528 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 372 ms
263,232 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

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)]
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]
    dfs(0)
    for now in range(cnt):
        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