Created
March 28, 2019 07:58
-
-
Save comzyh/16a777bf8d1ce77ad7a68e96f137d578 to your computer and use it in GitHub Desktop.
rand_k_in_n.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <algorithm> | |
#include <random> | |
#include <iostream> | |
#include <vector> | |
using namespace std; | |
vector<int> random_k_in_n(size_t k, int n) { // generate k distinct number in [0..n-1] | |
vector<int> ans; | |
ans.reserve(k); | |
std::random_device rd; | |
std::default_random_engine rng {rd()}; | |
for (int i = 0; i < n && k; i++) { | |
std::uniform_int_distribution<> dist(0, n - i - 1); | |
if (dist(rng) < k) { | |
ans.push_back(i); | |
k--; | |
} | |
} | |
return ans; | |
} | |
int main() { | |
vector<int> ans = random_k_in_n(1e5, 1e9); | |
for (size_t i = 0; i < ans.size(); i++) { | |
// cout << ans[i] << endl; | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment