摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=1104a%b=(a%b+b)%b;题意:开始给了你n, k, m,每次由+m, -m, *m, modm得到新的N,继续对N这样的操作,直到(n+1) mod k== N mod k时结束,并且打印路径 1 #in... 阅读全文
摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=1016题意:给你一个数n,让1~n数形成相邻两个数的和是个素数的环,并把环的序列输出 1 #include 2 #include 3 #include 4 #define maxn 100 5 using n... 阅读全文
摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=1114完全背包。 1 #include 2 #include 3 #include 4 #define maxn 50000 5 using namespace std; 6 const int inf=1<... 阅读全文
摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=1059 1 #include 2 #include 3 #include 4 #define maxn 2000000 5 using namespace std; 6 7 int dp[maxn]; 8 ... 阅读全文