結果

問題 No.2523 Trick Flower
ユーザー MasKoaTSMasKoaTS
提出日時 2023-10-26 16:56:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 697 ms / 4,000 ms
コード長 2,405 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 261,320 KB
最終ジャッジ日時 2024-09-25 12:24:51
合計ジャッジ時間 13,172 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,600 KB
testcase_01 AC 42 ms
54,040 KB
testcase_02 AC 39 ms
53,356 KB
testcase_03 AC 39 ms
52,988 KB
testcase_04 AC 40 ms
52,772 KB
testcase_05 AC 40 ms
53,112 KB
testcase_06 AC 40 ms
53,932 KB
testcase_07 AC 41 ms
54,316 KB
testcase_08 AC 100 ms
77,228 KB
testcase_09 AC 74 ms
74,356 KB
testcase_10 AC 54 ms
64,028 KB
testcase_11 AC 57 ms
65,528 KB
testcase_12 AC 56 ms
66,396 KB
testcase_13 AC 72 ms
73,156 KB
testcase_14 AC 71 ms
73,560 KB
testcase_15 AC 697 ms
261,320 KB
testcase_16 AC 687 ms
260,200 KB
testcase_17 AC 302 ms
135,512 KB
testcase_18 AC 257 ms
123,876 KB
testcase_19 AC 638 ms
165,652 KB
testcase_20 AC 612 ms
190,820 KB
testcase_21 AC 600 ms
185,436 KB
testcase_22 AC 632 ms
212,456 KB
testcase_23 AC 631 ms
168,408 KB
testcase_24 AC 384 ms
144,220 KB
testcase_25 AC 586 ms
212,312 KB
testcase_26 AC 540 ms
176,604 KB
testcase_27 AC 587 ms
212,160 KB
testcase_28 AC 497 ms
162,368 KB
testcase_29 AC 185 ms
89,736 KB
testcase_30 AC 457 ms
162,848 KB
testcase_31 AC 132 ms
78,848 KB
testcase_32 AC 300 ms
120,660 KB
testcase_33 AC 609 ms
178,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class SCC:
	def __init__(self, n):
		self.n = n
		self.route = [[] for _ in [0] * n]
		self.rev_route = [[] for _ in [0] * n]
		self.label = [-1] * n
		self.count = 0
	
	def add_edge(self, v_first, v_second):
		self.route[v_first].append(v_second)
		self.rev_route[v_second].append(v_first)

	def _build(self):
		self.v_list = []
		self.visited = set([])
		for v in range(self.n):
			if(v in self.visited):
				continue
			self._dfs(v)
		for v in reversed(self.v_list):
			if(self.label[v] != -1):
				continue
			self._rev_dfs(v)
			self.count += 1

	def _dfs(self, v_start):
		stack = [v_start, 0]
		while(stack):
			v, id = stack[-2:]
			if(id == 0 and v in self.visited):
				stack.pop()
				stack.pop()
				continue
			self.visited.add(v)
			if(id < len(self.route[v])):
				stack[-1] += 1
				stack.extend([self.route[v][id], 0])
				continue
			stack.pop()
			self.v_list.append(stack.pop())

	def _rev_dfs(self, v_start):
		stack = [v_start]
		self.label[v_start] = self.count
		while(stack):
			v_now = stack.pop()
			for v_next in self.rev_route[v_now]:
				if(self.label[v_next] != -1):
					continue
				self.label[v_next] = self.count
				stack.append(v_next)

	def construct(self):
		self._build()
		dag = [[] for _ in [0] * self.count]
		groups = [[] for _ in [0] * self.count]
		for v, lb in enumerate(self.label):
			for v_next in self.route[v]:
				lb_next = self.label[v_next]
				if(lb == lb_next):
					continue
				dag[lb].append(lb_next)
			groups[lb].append(v)
		return dag, groups



"""
Main Code
"""

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = [x - 1 for x in map(int, input().split())]

scc = SCC(N)
for i, x in enumerate(C):
	if(i == x):
		continue
	scc.add_edge(x, i)
dag, groups = scc.construct()

n = len(groups)
a = [0] * n
b = [0] * n
for i, group in enumerate(groups):
	a[i] = sum(A[x] for x in group)
	b[i] = sum(B[x] for x in group)
rdag = [[] for _ in [0] * n]
for x, ys in enumerate(dag):
	for y in ys:
		rdag[y].append(x)

def check(mid):
	dp = [x - mid * y for x, y in zip(a, b)]
	for x in range(n - 1, -1, -1):
		if(not(rdag[x]) and dp[x] < 0):
			return False
		if(dp[x] > 0):
			dp[x] = 0
		for y in rdag[x]:
			dp[y] += dp[x]
	return True

ok = 0
ng = sum(a) // sum(b) + 1
while(ng - ok > 1):
	mid = (ok + ng) >> 1
	if(check(mid)):
		ok = mid
	else:
		ng = mid
print(ok)
0