結果

問題 No.2523 Trick Flower
ユーザー ShirotsumeShirotsume
提出日時 2023-10-25 12:04:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,880 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 81,876 KB
実行使用メモリ 204,212 KB
最終ジャッジ日時 2023-10-25 12:04:41
合計ジャッジ時間 9,973 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,260 KB
testcase_01 WA -
testcase_02 AC 42 ms
56,260 KB
testcase_03 AC 43 ms
56,260 KB
testcase_04 AC 42 ms
56,260 KB
testcase_05 AC 43 ms
56,260 KB
testcase_06 AC 46 ms
56,260 KB
testcase_07 WA -
testcase_08 AC 67 ms
73,232 KB
testcase_09 WA -
testcase_10 AC 46 ms
58,308 KB
testcase_11 AC 55 ms
66,860 KB
testcase_12 AC 53 ms
66,540 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 383 ms
204,212 KB
testcase_16 AC 416 ms
195,156 KB
testcase_17 AC 349 ms
163,896 KB
testcase_18 AC 241 ms
190,144 KB
testcase_19 AC 459 ms
185,860 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 290 ms
181,420 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 118 ms
97,364 KB
testcase_30 WA -
testcase_31 AC 103 ms
78,544 KB
testcase_32 AC 197 ms
130,916 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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
    for i in range(cnt):
        dp[i] = A[i] - x * B[i] + r[i]
        for to in graph[i]:
            r[to] += dp[i]
        if len(graph[i]) == 0:
            if dp[i] >= 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