Hdu BestCoder 开分矿

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hdu BestCoder 开分矿相关的知识,希望对你有一定的参考价值。

  total = 2

 

Hdu:

5944 (BestCoder Round #89 1001): 枚举等比数列的第一项和公比,可以优化复杂度到 $O(n*\sqrt{n})$。还是太naive了,写了从$O(n^2logn)$到 $O(n^2)$的一系列做法TLE到死去活来。

5955 (BestCoder Round #89 1002): $dp[i] = min\{ dp[i+j] (1\leq j \leq t),dp[ik] \} + 1$,利用单调队列来维护区间最值。可以做到 $O(n)$。 注意 $t = 0$的trick;

以上是关于Hdu BestCoder 开分矿的主要内容,如果未能解决你的问题,请参考以下文章

[BestCoder Round #3] hdu 4908 BestCoder Sequence (计数)

hdu4908 & BestCoder Round #3 BestCoder Sequence(组合数学)

BestCoder Round #77 (div.2)(hdu5650,hdu5651(逆元),hdu5652(二分),hdu5653(dp))

BestCoder Round #69 (div.2)(hdu5611)

BestCoder Round #66 (div.2) hdu5592

BestCoder Round #73 (div.2)(hdu 5630)