标签

POJ

查看归入当前术语的文章。

文章数
7
  1. ACM

    Solution to POJ 1061

    将问题转换为二元线性丢番图方程,然后运用扩展欧几里德算法求解。

  2. ACM

    Solution to POJ 1009

    关键在于一定不能使用模拟法,并且要对几种情况进行有效的优化。

  3. ACM

    Solution to POJ 1018

    Enumerate candidate bandwidths, compute the minimum total price for each one, and then maximize the final bandwidth-to-price ratio.

  4. ACM

    Solution to POJ 1019

    Precompute the lengths of nested digit sequences, use binary search to locate the target block, and then extract the exact digit.

  5. ACM

    Solution to POJ 1045

    Simplify the circuit equations, derive the closed-form relationship for the receiver voltage, and note the numeric-differentiation alternat…

  6. ACM

    POJ 1001 解题分析

    这道题做了很多很多天,实在是非常不爽。一向最恶心高精度计算的题了,等有空了就写套类库出来,以后碰见就用 =w=

  7. ACM

    POJ 1002 解题分析

    这道题使用排序来解决基本上一定会超时,使用二叉查找树来做就可以了