結果

問題 No.2377 SUM AND XOR on Tree
ユーザー KowerKoint2010KowerKoint2010
提出日時 2023-06-30 07:31:41
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,003 ms / 4,000 ms
コード長 897 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 72,576 KB
最終ジャッジ日時 2024-07-06 23:54:16
合計ジャッジ時間 43,546 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
12,160 KB
testcase_01 AC 71 ms
12,032 KB
testcase_02 AC 72 ms
12,288 KB
testcase_03 AC 70 ms
12,160 KB
testcase_04 AC 70 ms
12,160 KB
testcase_05 AC 71 ms
12,160 KB
testcase_06 AC 70 ms
12,032 KB
testcase_07 AC 77 ms
12,288 KB
testcase_08 AC 1,917 ms
71,680 KB
testcase_09 AC 1,981 ms
71,680 KB
testcase_10 AC 1,949 ms
71,936 KB
testcase_11 AC 1,994 ms
71,936 KB
testcase_12 AC 1,957 ms
71,808 KB
testcase_13 AC 1,968 ms
68,736 KB
testcase_14 AC 1,879 ms
70,528 KB
testcase_15 AC 1,983 ms
72,576 KB
testcase_16 AC 1,946 ms
68,608 KB
testcase_17 AC 1,933 ms
72,192 KB
testcase_18 AC 75 ms
12,160 KB
testcase_19 AC 74 ms
12,032 KB
testcase_20 AC 74 ms
12,288 KB
testcase_21 AC 77 ms
12,160 KB
testcase_22 AC 73 ms
12,032 KB
testcase_23 AC 1,923 ms
71,040 KB
testcase_24 AC 1,922 ms
71,040 KB
testcase_25 AC 2,003 ms
71,808 KB
testcase_26 AC 1,720 ms
68,480 KB
testcase_27 AC 1,702 ms
68,608 KB
testcase_28 AC 1,712 ms
68,480 KB
testcase_29 AC 1,685 ms
71,808 KB
testcase_30 AC 1,678 ms
70,912 KB
testcase_31 AC 1,656 ms
70,784 KB
testcase_32 AC 1,804 ms
68,480 KB
testcase_33 AC 1,776 ms
68,480 KB
testcase_34 AC 1,769 ms
68,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

MOD = 998244353
n = gets.to_i
g = Array.new(n) { [] }
(n - 1).times do
  a, b = gets.split.map(&:to_i)
  g[a - 1] << b - 1
  g[b - 1] << a - 1
end
seen = Array.new(n, false)
seen[0] = true
postorder = []
child = Array.new(n) { [] }
stk = [~0, 0]
while !stk.empty?
  u = stk.pop
  if u >= 0
    g[u].each do |v|
      next if seen[v]
      seen[v] = true
      child[u] << v
      stk.push(~v, v)
    end
  else
    postorder << ~u
  end
end
a = gets.split.map(&:to_i)
ans = 0
30.times do |k|
  dp0 = Array.new(n, 0)
  dp1 = Array.new(n, 0)
  postorder.each do |u|
    if (a[u] >> k & 1) == 1
      dp1[u] = 1
    else
      dp0[u] = 1
    end
    child[u].each do |v|
      ndp0 = dp0[u]*dp0[v] + dp1[u]*dp1[v] + dp0[u]*dp1[v]
      ndp1 = dp0[u]*dp1[v] + dp1[u]*dp0[v] + dp1[u]*dp1[v]
      dp0[u] = ndp0 % MOD
      dp1[u] = ndp1 % MOD
    end
  end
  ans += dp1[0] << k
end
ans %= MOD
puts ans
0