上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 182 下一页
摘要: 简单题#include #define maxn 10005int n, f[maxn];void init(){ int i = 1; int x = 0; while (1) { for (int j = 0; j 10000) ... 阅读全文
posted @ 2013-06-13 19:51 undefined2024 阅读(210) 评论(0) 推荐(0)
摘要: 简单题#include #include #include #include using namespace std;struct Player{ string name; double speed; int weight, strength; Player() {} ... 阅读全文
posted @ 2013-06-13 14:03 undefined2024 阅读(224) 评论(0) 推荐(0)
摘要: 简单模拟#include #include #include using namespace std;int n;char st[300];int main(){ while (scanf("%d", &n), n) { scanf("%s", st); in... 阅读全文
posted @ 2013-06-12 21:22 undefined2024 阅读(131) 评论(0) 推荐(0)
摘要: 递推#include #include char st[50005];int f[50005];bool ok(char a, char b){ if (a == '0') return false; int x = (a - '0') * 10 + b - '0'; ... 阅读全文
posted @ 2013-06-12 21:09 undefined2024 阅读(146) 评论(0) 推荐(0)
摘要: 简单题#include int main(){ int t; scanf("%d", &t); while (t--) { int a, b; scanf("%d%d", &a, &b); if (a >= b) ... 阅读全文
posted @ 2013-06-12 20:53 undefined2024 阅读(162) 评论(0) 推荐(0)
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 182 下一页