上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 182 下一页
摘要: dp#include #include #include using namespace std;#define MAX_COACH_NUM 50005int coach_num;int coach[MAX_COACH_NUM];int f[4][MAX_COACH_NUM];int sum[MAX... 阅读全文
posted @ 2013-06-22 15:50 金海峰 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 简单题#include #include using namespace std;#define maxn 50005int n;int f[maxn], g[maxn];int main(){ scanf("%d", &n); if (n < 4) { puts("... 阅读全文
posted @ 2013-06-13 20:50 金海峰 阅读(220) 评论(1) 推荐(0) 编辑
摘要: 简单题#include int sum(int a, int b){ int ret = 0; while (a) { ret += a % b; a /= b; } return ret;}int main(){ for (int i... 阅读全文
posted @ 2013-06-13 20:30 金海峰 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 简单题#include int main(){ int t; scanf("%d", &t); while (t--) { int a, b, c, d; scanf("%d%d", &a, &b); c = (a + b) / 2;... 阅读全文
posted @ 2013-06-13 20:18 金海峰 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 简单题#include #include using namespace std;int l, n;void input(){ int earliest, latest; scanf("%d%d", &l, &n); latest = 0; earliest = 0; ... 阅读全文
posted @ 2013-06-13 20:12 金海峰 阅读(118) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 182 下一页