Всем привет!
Как кто пишет генератор рандомного графа? Просто мне это срочно нужно. Заранее спасибо.
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3831 |
3 | Radewoosh | 3646 |
4 | jqdai0815 | 3620 |
4 | Benq | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | gamegame | 3386 |
10 | ksun48 | 3373 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
Всем привет!
Как кто пишет генератор рандомного графа? Просто мне это срочно нужно. Заранее спасибо.
Hi, Codeforces! I usually create a testset founded on rand (), but the range of this function is 10^5. And if I want to generate a big number, I used to write a function like this
llong randomize (llong x) {
llong res = 1;
for (llong i = 1; i <= 5; ++ i) {
res *= rand () * 1LL;
res %= x;
} return res % x + 1;
}
but there's high probability of returning 1.
If you have an effective method of using rand () function, please, write your way.
P.S. sorry for bad english.
Название |
---|