摘要: 动态规划!!! 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #define ll __int64 9 #define pi acos(-1.0)10 #define MAX 5000011 using namespace std;12 ll dp[202][202];13 int score[5][5]={14 5,-1,-2,-1,-3,15 -1,5,-3,-2,-4,16 -2,-3,5,-2,-2,17 -1,-2,-2,5,-1,18 ... 阅读全文
posted @ 2013-07-27 16:50 _随心所欲_ 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 数据不是很大,直接枚举约数,判断4个条件是否满足!这样就得到4种卡片,总共2^4种情况,枚举各种情况即可!!! 1 #include 2 #include 3 #include 4 #define MAX 5000005 5 #define ll long long 6 using namespace std; 7 bool ispri[MAX]; 8 int extra[4]; 9 struct card 10 { 11 int score,num,s; 12 }p[1002]; 13 bool cmp(const card &aa,const card &bb){... 阅读全文
posted @ 2013-07-27 11:21 _随心所欲_ 阅读(147) 评论(0) 推荐(0) 编辑