1073:负二进制数相加
This commit is contained in:
parent
4adf7dee61
commit
f71248bde4
@ -0,0 +1,98 @@
|
||||
//<p>给出基数为 <strong>-2</strong> 的两个数 <code>arr1</code> 和 <code>arr2</code>,返回两数相加的结果。</p>
|
||||
//
|
||||
//<p>数字以 <em>数组形式</em><strong> </strong>给出:数组由若干 0 和 1 组成,按最高有效位到最低有效位的顺序排列。例如,<code>arr = [1,1,0,1]</code> 表示数字 <code>(-2)^3 + (-2)^2 + (-2)^0 = -3</code>。<em>数组形式</em> 中的数字 <code>arr</code> 也同样不含前导零:即 <code>arr == [0]</code> 或 <code>arr[0] == 1</code>。</p>
|
||||
//
|
||||
//<p>返回相同表示形式的 <code>arr1</code> 和 <code>arr2</code> 相加的结果。两数的表示形式为:不含前导零、由若干 0 和 1 组成的数组。</p>
|
||||
//
|
||||
//<p> </p>
|
||||
//
|
||||
//<p><strong>示例 1:</strong></p>
|
||||
//
|
||||
//<pre>
|
||||
//<strong>输入:</strong>arr1 = [1,1,1,1,1], arr2 = [1,0,1]
|
||||
//<strong>输出:</strong>[1,0,0,0,0]
|
||||
//<strong>解释:</strong>arr1 表示 11,arr2 表示 5,输出表示 16 。
|
||||
//</pre>
|
||||
//
|
||||
//<p>
|
||||
// <meta charset="UTF-8" /></p>
|
||||
//
|
||||
//<p><strong>示例 2:</strong></p>
|
||||
//
|
||||
//<pre>
|
||||
//<strong>输入:</strong>arr1 = [0], arr2 = [0]
|
||||
//<strong>输出:</strong>[0]
|
||||
//</pre>
|
||||
//
|
||||
//<p><strong>示例 3:</strong></p>
|
||||
//
|
||||
//<pre>
|
||||
//<strong>输入:</strong>arr1 = [0], arr2 = [1]
|
||||
//<strong>输出:</strong>[1]
|
||||
//</pre>
|
||||
//
|
||||
//<p> </p>
|
||||
//
|
||||
//<p><strong>提示:</strong></p>
|
||||
//<meta charset="UTF-8" />
|
||||
//
|
||||
//<ul>
|
||||
// <li><code>1 <= arr1.length, arr2.length <= 1000</code></li>
|
||||
// <li><code>arr1[i]</code> 和 <code>arr2[i]</code> 都是 <code>0</code> 或 <code>1</code></li>
|
||||
// <li><code>arr1</code> 和 <code>arr2</code> 都没有前导0</li>
|
||||
//</ul>
|
||||
//
|
||||
//<div><div>Related Topics</div><div><li>数组</li><li>数学</li></div></div><br><div><li>👍 80</li><li>👎 0</li></div>
|
||||
package leetcode.editor.cn;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
// 1073:负二进制数相加
|
||||
public class AddingTwoNegabinaryNumbers {
|
||||
public static void main(String[] args) {
|
||||
Solution solution = new AddingTwoNegabinaryNumbers().new Solution();
|
||||
// TO TEST
|
||||
}
|
||||
|
||||
//leetcode submit region begin(Prohibit modification and deletion)
|
||||
class Solution {
|
||||
public int[] addNegabinary(int[] arr1, int[] arr2) {
|
||||
int i = arr1.length - 1, j = arr2.length - 1;
|
||||
int carry = 0;
|
||||
List<Integer> ans = new ArrayList<>();
|
||||
while (i >= 0 || j >= 0 || carry != 0) {
|
||||
int x = carry;
|
||||
if (i >= 0) {
|
||||
x += arr1[i];
|
||||
}
|
||||
if (j >= 0) {
|
||||
x += arr2[j];
|
||||
}
|
||||
if (x >= 2) {
|
||||
ans.add(x - 2);
|
||||
carry = -1;
|
||||
} else if (x >= 0) {
|
||||
ans.add(x);
|
||||
carry = 0;
|
||||
} else {
|
||||
ans.add(1);
|
||||
carry = 1;
|
||||
}
|
||||
--i;
|
||||
--j;
|
||||
}
|
||||
while (ans.size() > 1 && ans.get(ans.size() - 1) == 0) {
|
||||
ans.remove(ans.size() - 1);
|
||||
}
|
||||
int[] arr = ans.stream().mapToInt(Integer::intValue).toArray();
|
||||
for (i = 0, j = ans.size() - 1; j >= 0; i++, j--) {
|
||||
arr[i] = ans.get(j);
|
||||
}
|
||||
return arr;
|
||||
}
|
||||
}
|
||||
//leetcode submit region end(Prohibit modification and deletion)
|
||||
|
||||
}
|
@ -0,0 +1,45 @@
|
||||
<p>给出基数为 <strong>-2</strong> 的两个数 <code>arr1</code> 和 <code>arr2</code>,返回两数相加的结果。</p>
|
||||
|
||||
<p>数字以 <em>数组形式</em><strong> </strong>给出:数组由若干 0 和 1 组成,按最高有效位到最低有效位的顺序排列。例如,<code>arr = [1,1,0,1]</code> 表示数字 <code>(-2)^3 + (-2)^2 + (-2)^0 = -3</code>。<em>数组形式</em> 中的数字 <code>arr</code> 也同样不含前导零:即 <code>arr == [0]</code> 或 <code>arr[0] == 1</code>。</p>
|
||||
|
||||
<p>返回相同表示形式的 <code>arr1</code> 和 <code>arr2</code> 相加的结果。两数的表示形式为:不含前导零、由若干 0 和 1 组成的数组。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>arr1 = [1,1,1,1,1], arr2 = [1,0,1]
|
||||
<strong>输出:</strong>[1,0,0,0,0]
|
||||
<strong>解释:</strong>arr1 表示 11,arr2 表示 5,输出表示 16 。
|
||||
</pre>
|
||||
|
||||
<p>
|
||||
<meta charset="UTF-8" /></p>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>arr1 = [0], arr2 = [0]
|
||||
<strong>输出:</strong>[0]
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>arr1 = [0], arr2 = [1]
|
||||
<strong>输出:</strong>[1]
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
<meta charset="UTF-8" />
|
||||
|
||||
<ul>
|
||||
<li><code>1 <= arr1.length, arr2.length <= 1000</code></li>
|
||||
<li><code>arr1[i]</code> 和 <code>arr2[i]</code> 都是 <code>0</code> 或 <code>1</code></li>
|
||||
<li><code>arr1</code> 和 <code>arr2</code> 都没有前导0</li>
|
||||
</ul>
|
||||
|
||||
<div><div>Related Topics</div><div><li>数组</li><li>数学</li></div></div><br><div><li>👍 80</li><li>👎 0</li></div>
|
Loading…
Reference in New Issue
Block a user