Hello CodeForces How to find minimal prime divisor for n <= 10^12 if there are number of queries <= 10^5
# | User | Rating |
---|---|---|
1 | jiangly | 3976 |
2 | tourist | 3815 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3614 |
5 | orzdevinwang | 3526 |
6 | ecnerwala | 3514 |
7 | Benq | 3482 |
8 | hos.lyric | 3382 |
9 | gamegame | 3374 |
10 | heuristica | 3357 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | -is-this-fft- | 165 |
3 | Um_nik | 161 |
4 | atcoder_official | 160 |
5 | djm03178 | 157 |
6 | Dominater069 | 156 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
Hello CodeForces How to find minimal prime divisor for n <= 10^12 if there are number of queries <= 10^5
Hi CodeForces, help me please with this -> problem
I tryed to use BFS, but i got TLE
Hi CodeForces.
I won't give link of problen and explain statement of problem, because this problem has more easier solution. But i want implement my solution idea, but i have problems with realization, and i need your help.
In problem i must calculate dp
for (int i = 1; i <= n; i++){
int mn = inf, mx = -inf;
for (int j = i; j >= 1; j--){
mn = min(mn, a[j]), mx = max(mx, a[j]);
dp[i] = max(dp[i], dp[j - 1] + (mx - mn));
}
}
Problem can not be solved in O(N^2), because N <= 10^6
I think, exist way to calculate dp mush faster -> dp[i] = max(dp[j - 1] + (mx[j] - mn[j])) 1 <= j < i
mx[j] -> maximum from j to i
mn[j] -> minimum from j to i
Thanks in advance!
Where is editorial from author???
Can you explain soluton idea with treap?
Hello CodeForces. Offensively that round #383 was rescheduled.
Please help me with this problem.
Ladies and Gentlemen, please help me -> problem.
Name |
---|