you have an an integer n such that 1<=n<= 10^12, find the sum of all triagular numbers that are less than or equal n,
time limit: 1 second
you have an an integer n such that 1<=n<= 10^12, find the sum of all triagular numbers that are less than or equal n,
time limit: 1 second
| # | User | Rating |
|---|---|---|
| 1 | jiangly | 3810 |
| 2 | Benq | 3676 |
| 3 | Kevin114514 | 3655 |
| 4 | maroonrk | 3463 |
| 5 | strapple | 3390 |
| 6 | Um_nik | 3387 |
| 7 | tourist | 3384 |
| 8 | heuristica | 3322 |
| 9 | turmax | 3319 |
| 10 | jiangbowen | 3291 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 155 |
| 2 | nik_exists | 150 |
| 2 | maspy | 150 |
| 4 | Um_nik | 144 |
| 5 | Errichto | 139 |
| 6 | adamant | 137 |
| 7 | AmShZ | 136 |
| 8 | BledDest | 132 |
| 8 | maroonrk | 132 |
| 10 | qwexd | 129 |
| Name |
|---|



just binary search the index of the last triangular number <=n and use the hockey stick theorem
did not understand hockey stick theorem, could you explain it please? how does it relate to the problem?
sum of first i triangular numbers is the ith tetrahedral number
It can be solved in
O(sqrt(n)). Triangular numbers isT(k)=k(k+1)/2, just increment k from 1 whileT(k)<=nand get a sum ofT(k)If you have q queries, it can be solved in
O(q*log(n)+sqrt(n))with precompute prefix sums. Code?And you can use binary search by last
T(k),sum of T(k) from 1 to mism(m+1)(m+2)/6And you can solve in
O(1)by solving equationm * (m+1) / 2 <= n ~ m^2 + m - 2 * n = 0.Solution:
m = (sqrt(8*n+1)-1)/2yes please, I would like to see you approach
I like that O(1) query, another thing that could be done here instead of using formula sqrt(8 * n + 1) — 1) / 2; it can be subs. by the following two lines of codes, 1-x=floor(sqrt(2*n)); 2-if(((x+1)*(x))/2>n)--x; x here is the number of the first triangular numbers <= n, then what is left is to calculate the sum of the first x triangular numbers.
x=floor(sqrt(2*n));if(((x+1)*(x))/2>n)--x;What's going on here? It is attack from one user with 15 accounts?