結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー shobonvipshobonvip
提出日時 2023-02-03 22:00:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 2,285 bytes
コンパイル時間 738 ms
コンパイル使用メモリ 86,744 KB
実行使用メモリ 172,828 KB
最終ジャッジ日時 2023-09-15 17:48:58
合計ジャッジ時間 10,673 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,200 KB
testcase_01 AC 72 ms
71,432 KB
testcase_02 AC 71 ms
71,200 KB
testcase_03 AC 71 ms
71,192 KB
testcase_04 AC 73 ms
71,076 KB
testcase_05 AC 72 ms
71,424 KB
testcase_06 AC 72 ms
71,188 KB
testcase_07 AC 72 ms
71,168 KB
testcase_08 AC 72 ms
71,308 KB
testcase_09 AC 73 ms
71,320 KB
testcase_10 AC 72 ms
71,132 KB
testcase_11 AC 254 ms
171,440 KB
testcase_12 AC 264 ms
172,744 KB
testcase_13 AC 254 ms
172,828 KB
testcase_14 AC 249 ms
169,532 KB
testcase_15 AC 239 ms
149,448 KB
testcase_16 AC 222 ms
120,488 KB
testcase_17 AC 215 ms
119,680 KB
testcase_18 AC 72 ms
71,184 KB
testcase_19 AC 256 ms
137,676 KB
testcase_20 AC 262 ms
135,444 KB
testcase_21 AC 273 ms
135,888 KB
testcase_22 AC 255 ms
134,540 KB
testcase_23 AC 267 ms
135,768 KB
testcase_24 AC 260 ms
136,792 KB
testcase_25 AC 276 ms
135,684 KB
testcase_26 AC 281 ms
135,724 KB
testcase_27 AC 258 ms
138,244 KB
testcase_28 AC 247 ms
134,468 KB
testcase_29 AC 258 ms
137,352 KB
testcase_30 AC 272 ms
135,692 KB
testcase_31 AC 259 ms
137,436 KB
testcase_32 AC 269 ms
136,668 KB
testcase_33 AC 269 ms
136,504 KB
testcase_34 AC 247 ms
135,540 KB
testcase_35 AC 276 ms
135,992 KB
testcase_36 AC 268 ms
135,848 KB
testcase_37 AC 253 ms
135,720 KB
testcase_38 AC 274 ms
135,768 KB
testcase_39 AC 259 ms
137,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import os
import sys
from io import BytesIO, IOBase

BUFSIZE = 8192


class FastIO(IOBase):
	newlines = 0
	
	def __init__(self, file):
		self._fd = file.fileno()
		self.buffer = BytesIO()
		self.writable = "x" in file.mode or "r" not in file.mode
		self.write = self.buffer.write if self.writable else None
	
	def read(self):
		while True:
			b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
			if not b:
				break
			ptr = self.buffer.tell()
			self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
		self.newlines = 0
		return self.buffer.read()
	
	def readline(self):
		while self.newlines == 0:
			b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
			self.newlines = b.count(b"\n")+(not b)
			ptr = self.buffer.tell()
			self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
		self.newlines -= 1
		return self.buffer.readline()
	
	def flush(self):
		if self.writable:
			os.write(self._fd, self.buffer.getvalue())
			self.buffer.truncate(0), self.buffer.seek(0)


class IOWrapper(IOBase):
	def __init__(self, file):
		self.buffer = FastIO(file)
		self.flush = self.buffer.flush
		self.writable = self.buffer.writable
		self.write = lambda s:self.buffer.write(s.encode("ascii"))
		self.read = lambda:self.buffer.read().decode("ascii")
		self.readline = lambda:self.buffer.readline().decode("ascii")


sys.stdin, sys.stdout = IOWrapper(sys.stdin), IOWrapper(sys.stdout)
input = lambda:sys.stdin.readline().rstrip("\r\n")

n = int(input())
ikeru = [[] for i in range(n)]

for i in range(n-1):
	a, b = map(int,input().split())
	a-=1; b-=1
	ikeru[a].append(b)
	ikeru[b].append(a)

c = list(map(int,input().split()))

mada = [~0, 0]
tansaku = [0] * n
tansaku[0] = 1

dp0 = [0] * n # 自分が空いている
dp1 = [0] * n # 自分が空いていない

while mada:
	i = mada.pop()
	if i >= 0:
		for j in ikeru[i]:
			if tansaku[j] == 0:
				tansaku[j] = 1
				mada.append(~j)
				mada.append(j)
	else:
		i = ~ i
		if c[i] == 1:
			r1 = 0
			r0 = 10 ** 9
		else:
			r1 = 10 ** 9
			r0 = 0
		for j in ikeru[i]:
			if tansaku[j] == 2:
				r0, r1 = min(r0 + dp1[j], r1 + dp0[j] + 1), min(r0 + dp0[j] + 1, r1 + dp1[j])
		dp1[i] = r1
		dp0[i] = r0
		tansaku[i] = 2

#print(dp0, dp1)

if dp1[0] > 10 ** 8:
	print(-1)
else:
	print(dp1[0])
0