結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー shobonvipshobonvip
提出日時 2023-02-03 22:00:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 2,285 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 169,980 KB
最終ジャッジ日時 2024-07-02 19:55:14
合計ジャッジ時間 9,371 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 40 ms
52,864 KB
testcase_03 AC 40 ms
52,864 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 40 ms
52,736 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 40 ms
52,608 KB
testcase_11 AC 236 ms
168,768 KB
testcase_12 AC 241 ms
168,912 KB
testcase_13 AC 235 ms
168,952 KB
testcase_14 AC 231 ms
169,980 KB
testcase_15 AC 212 ms
139,572 KB
testcase_16 AC 195 ms
114,856 KB
testcase_17 AC 189 ms
114,828 KB
testcase_18 AC 41 ms
52,736 KB
testcase_19 AC 234 ms
136,444 KB
testcase_20 AC 242 ms
134,396 KB
testcase_21 AC 249 ms
134,652 KB
testcase_22 AC 238 ms
140,712 KB
testcase_23 AC 244 ms
134,208 KB
testcase_24 AC 240 ms
135,652 KB
testcase_25 AC 259 ms
134,528 KB
testcase_26 AC 257 ms
134,188 KB
testcase_27 AC 236 ms
136,556 KB
testcase_28 AC 232 ms
140,816 KB
testcase_29 AC 238 ms
130,584 KB
testcase_30 AC 257 ms
134,692 KB
testcase_31 AC 239 ms
136,304 KB
testcase_32 AC 255 ms
135,188 KB
testcase_33 AC 254 ms
135,332 KB
testcase_34 AC 233 ms
134,208 KB
testcase_35 AC 259 ms
134,564 KB
testcase_36 AC 248 ms
134,720 KB
testcase_37 AC 238 ms
134,204 KB
testcase_38 AC 255 ms
135,024 KB
testcase_39 AC 243 ms
136,448 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