結果

問題 No.2523 Trick Flower
ユーザー titiatitia
提出日時 2023-11-09 03:00:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,286 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 209,364 KB
最終ジャッジ日時 2024-09-26 00:00:10
合計ジャッジ時間 14,543 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 43 ms
52,736 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 42 ms
52,480 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 43 ms
52,352 KB
testcase_07 WA -
testcase_08 AC 69 ms
67,584 KB
testcase_09 AC 63 ms
65,280 KB
testcase_10 AC 45 ms
53,632 KB
testcase_11 AC 60 ms
63,872 KB
testcase_12 AC 53 ms
60,928 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1,752 ms
185,428 KB
testcase_16 AC 1,697 ms
181,668 KB
testcase_17 AC 288 ms
188,716 KB
testcase_18 AC 312 ms
209,364 KB
testcase_19 AC 722 ms
195,740 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 689 ms
198,688 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 379 ms
185,104 KB
testcase_26 WA -
testcase_27 AC 454 ms
181,592 KB
testcase_28 WA -
testcase_29 AC 129 ms
91,776 KB
testcase_30 AC 390 ms
160,832 KB
testcase_31 AC 100 ms
78,080 KB
testcase_32 AC 236 ms
125,184 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
C=list(map(int,input().split()))

for i in range(N):
    C[i]-=1

# (一般グラフの)トポロジカルソート、SCC

E=[[] for i in range(N)]
E_INV=[[] for i in range(N)]

for i in range(N):
    E[C[i]].append(i)
    E_INV[i].append(C[i])

# DFSして帰り際にTOPに点を放り込んでいる。
# NOWで現在地点、USEINDで、どこの辺まで既に見たか、を調べている。
def Top_sort(E):
    Parent=[-1]*N
    USEIND=[0]*N
    TOP=[]

    for ROOT in range(N):
        if Parent[ROOT]!=-1:
            continue
        Parent[ROOT]=ROOT

        NOW=ROOT

        while NOW!=ROOT or USEIND[ROOT]!=len(E[ROOT]):

            if USEIND[NOW]==len(E[NOW]):
                TOP.append(NOW)
                NOW=Parent[NOW]
            elif E[NOW][USEIND[NOW]]==Parent[NOW]:
                USEIND[NOW]+=1
            else:
                NEXT=E[NOW][USEIND[NOW]]
                USEIND[NOW]+=1
                if Parent[NEXT]==-1:
                    Parent[NEXT]=NOW
                    NOW=NEXT
        TOP.append(ROOT)
        
    return TOP[::-1]


USE=[0]*N
SCC=[]

# SCCを調べるための逆順DFS。
# やっていることはhttps://manabitimes.jp/math/1250 などと同じ。
def dfs2(x):
    Q=[x]
    USE[x]=1
    ANS=[]

    while Q:
        x=Q.pop()
        ANS.append(x)
        for to in E_INV[x]:
            if USE[to]==0:
                USE[to]=1
                Q.append(to)
    return ANS

TOP_SORT=Top_sort(E)

for x in TOP_SORT:
    if USE[x]==0:
        SCC.append(dfs2(x))

REP=[-1]*N
for scc in SCC:
    rep=scc[0]

    for s in scc:
        REP[s]=rep

E=[set() for i in range(N)]
E_INV=[set() for i in range(N)]

for i in range(N):
    E[REP[C[i]]].add(REP[i])
    E_INV[REP[i]].add(REP[C[i]])

OK=0
NG=10**15

while NG>OK+1:
    mid=(OK+NG)//2
    rest=0
    flag=1
    DP=[0]*N

    for i in range(len(SCC)):
        need=0
        for sc in SCC[i]:
            need+=B[sc]*mid-A[sc]

        for fr in E_INV[SCC[i][0]]:
            need-=DP[fr]

        if need>0:
            flag=0
            break
        else:
            DP[SCC[i][0]]=-need

    if flag==1:
        OK=mid
    else:
        NG=mid

print(OK)
        
        

    
0