LeetCode898

题目大意
We have an array A of non-negative integers.

For every (contiguous) subarray B = [A[i], A[i+1], …, A[j]] (with i <= j), we take the bitwise OR of all the elements in B, obtaining a result A[i] | A[i+1] | … | A[j].

Return the number of possible results. (Results that occur more than once are only counted once in the final answer.)

Example 1:

Input: [0]
Output: 1
Explanation:
There is only one possible result: 0.
Example 2:

Input: [1,1,2]
Output: 3
Explanation:
The possible subarrays are [1], [1], [2], [1, 1], [1, 2], [1, 1, 2].
These yield the results 1, 1, 2, 1, 3, 3.
There are 3 unique values, so the answer is 3.
Example 3:

Input: [1,2,4]
Output: 6
Explanation:
The possible results are 1, 2, 3, 4, 6, and 7.

Note:

1 <= A.length <= 50000
0 <= A[i] <= 10^9

优化半天还是超时,还是看了别人的
在这里插入图片描述

class Solution {
    public int subarrayBitwiseORs(int[] A) {
		HashSet<Integer> fin = new HashSet<>();
		HashSet<Integer> cur = new HashSet<>();
		for (Integer i : A) {
            fin.add(i);
			HashSet<Integer> tem = new HashSet<>();
			tem.add(i);
			for (Integer j : cur) {
				tem.add(j| i);
				fin.add(j|i);
				//System.out.println(fin);
			}
			cur = tem;
			//System.out.println(cur);
		}
		return fin.size();
	}
}

贴我的超时的

class Solution {
    public int subarrayBitwiseORs(int[] A) {
   HashSet<Integer> fin = new HashSet<>();
		HashSet<Integer> cur = new HashSet<>();
		for (Integer i : A) {

			HashSet<Integer> tem = new HashSet<>();
			tem.add(i);
			for (Integer j : cur) {
				tem.add(j| i);
			}
			cur = tem;
			//System.out.println(cur);
			fin.addAll(cur);
			//System.out.println(fin);
		}
		return fin.size();
	}
}
class Solution {
    public int subarrayBitwiseORs(int[] A) {
     if(A.length<2) {
			return 1;
		}
		List<Integer> list=new ArrayList<>();
		list.add(A[0]);
		for(int i=1;i<A.length;i++) {
			if(!list.contains(A[i])) {
				list.add(A[i]);
			//	System.out.print(A[i]+",");
			}
			int tem=A[i];
			for(int j=i-1;j>=0;j--) {
				//System.out.println(tem+"|"+A[j]+"="+(tem|A[j]));
				tem=tem|A[j];
				if(!list.contains(tem)) {
					list.add(tem);
					//System.out.print(tem+",");
				}
			}
		}
		System.out.println(list);
		return list.size();
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值