简介
记住如何使用C++11函数的话会很简单.
参考链接
code
class Solution {
public:
vector<int> presum;
// 求前缀和
Solution(vector<int>& w): presum(move(w)) {
partial_sum(presum.begin(), presum.end(), presum.begin());
}
int pickIndex() {
int pos = (rand() % presum.back()) + 1;
return lower_bound(presum.begin(), presum.end(), pos) - presum.begin();
}
};
class Solution {
List<Integer> psum = new ArrayList<>();
int tot = 0;
Random rand = new Random();
public Solution(int[] w) {
for (int x : w) {
tot += x;
psum.add(tot);
}
}
public int pickIndex() {
int targ = rand.nextInt(tot);
int lo = 0;
int hi = psum.size() - 1;
while (lo != hi) {
int mid = (lo + hi) / 2;
if (targ >= psum.get(mid)) lo = mid + 1;
else hi = mid;
}
return lo;
}
}
---------------------------我的天空里没有太阳,总是黑夜,但并不暗,因为有东西代替了太阳。虽然没有太阳那么明亮,但对我来说已经足够。凭借着这份光,我便能把黑夜当成白天。我从来就没有太阳,所以不怕失去。
--------《白夜行》