mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
43 lines
2.5 KiB
HTML
43 lines
2.5 KiB
HTML
<p>You are given a <strong>tree</strong> (i.e. a connected, undirected graph that has no cycles) <strong>rooted</strong> at node <code>0</code> consisting of <code>n</code> nodes numbered from <code>0</code> to <code>n - 1</code>. The tree is represented by a <strong>0-indexed</strong> array <code>parent</code> of size <code>n</code>, where <code>parent[i]</code> is the parent of node <code>i</code>. Since node <code>0</code> is the root, <code>parent[0] == -1</code>.</p>
|
|
|
|
<p>You are also given a string <code>s</code> of length <code>n</code>, where <code>s[i]</code> is the character assigned to the edge between <code>i</code> and <code>parent[i]</code>. <code>s[0]</code> can be ignored.</p>
|
|
|
|
<p>Return <em>the number of pairs of nodes </em><code>(u, v)</code><em> such that </em><code>u < v</code><em> and the characters assigned to edges on the path from </em><code>u</code><em> to </em><code>v</code><em> can be <strong>rearranged</strong> to form a <strong>palindrome</strong></em>.</p>
|
|
|
|
<p>A string is a <strong>palindrome</strong> when it reads the same backwards as forwards.</p>
|
|
|
|
<p> </p>
|
|
<p><strong class="example">Example 1:</strong></p>
|
|
|
|
<p><img alt="" src="https://assets.leetcode.com/uploads/2023/07/15/treedrawio-8drawio.png" style="width: 281px; height: 181px;" /></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> parent = [-1,0,0,1,1,2], s = "acaabc"
|
|
<strong>Output:</strong> 8
|
|
<strong>Explanation:</strong> The valid pairs are:
|
|
- All the pairs (0,1), (0,2), (1,3), (1,4) and (2,5) result in one character which is always a palindrome.
|
|
- The pair (2,3) result in the string "aca" which is a palindrome.
|
|
- The pair (1,5) result in the string "cac" which is a palindrome.
|
|
- The pair (3,5) result in the string "acac" which can be rearranged into the palindrome "acca".
|
|
</pre>
|
|
|
|
<p><strong class="example">Example 2:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> parent = [-1,0,0,0,0], s = "aaaaa"
|
|
<strong>Output:</strong> 10
|
|
<strong>Explanation:</strong> Any pair of nodes (u,v) where u < v is valid.
|
|
</pre>
|
|
|
|
<p> </p>
|
|
<p><strong>Constraints:</strong></p>
|
|
|
|
<ul>
|
|
<li><code>n == parent.length == s.length</code></li>
|
|
<li><code>1 <= n <= 10<sup>5</sup></code></li>
|
|
<li><code>0 <= parent[i] <= n - 1</code> for all <code>i >= 1</code></li>
|
|
<li><code>parent[0] == -1</code></li>
|
|
<li><code>parent</code> represents a valid tree.</li>
|
|
<li><code>s</code> consists of only lowercase English letters.</li>
|
|
</ul>
|