Hello Codeforces is there any probability library or any codes could help in these topic. thank you very much :D
# | User | Rating |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3814 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3517 |
7 | Radewoosh | 3410 |
8 | hos.lyric | 3399 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 161 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | awoo | 154 |
8 | Dominater069 | 154 |
10 | luogu_official | 150 |
Hello Codeforces is there any probability library or any codes could help in these topic. thank you very much :D
Hi Codeforces :D I'm looking for some problems about 3D prefix sum can you provide some links thanks a lot
Hi codeforces are there any tutorials or codes for this gym
http://codeforces.net/gym/100030
and if not can someone tell me how to solve ( A , F , I ) or one of them at least
thank you very much. sorry for my poor English.
the build function in segment tree :
void build(int id = 1,int l = 0,int r = n){
if(r - l < 2){ // l + 1 == r
s[id] = a[l];
return ;
}
int mid = (l+r)/2;
build(id * 2, l, mid);
build(id * 2 + 1, mid, r);
s[id] = s[id * 2] + s[id * 2 + 1];
}
divide and conquer algorithm to find maximum element in array :
int Max(int s = 1 , int e = n){
if(s == e) return arr[s] ;
int choice1 = arr[s] , choice2 = arr[e] ;
choice1 = max( choice1 , Max( s , (s + e)/2 ) ;
choice2 = max( choice2 , Max( (s + e)/2 + 1 , e ) ;
return max(choice1 , choice2) ;
}
why the complexity of the first function is O( n * log(n) ) And the second is O(n) thanks for your help :D
Name |
---|