2013年7月6日
摘要:
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2115数学的特点在于不断的推导,此题还需要用到欧拉定理和逆元的相关性质,推荐博客(有部分小错误):http://www.cnblogs.com/vongang/archive/2013/06/04/3117370.html代码:#include #include #include #include #include #include #include #define ll long 阅读全文
摘要:
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2078简单递推代码:#include #include #include #include #include #include #define ll long longusing namespace std;const int N=10005;ll sum[N][50];int main(){ //freopen("data.in","r", 阅读全文
摘要:
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2370难题锻炼思维,水题锻炼细心。这个题有两个需要注意的地方1,关于前导零2,高精度代码:import java.math.BigInteger;import java.util.Scanner;public class Main { /** * @param args */ static final int N=2005; public static void main(Stri 阅读全文