上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 36 下一页
摘要: NOIP不考可持久,弃坑 阅读全文
posted @ 2016-10-19 18:57 ACforever 阅读(122) 评论(0) 推荐(0) 编辑
摘要: /* 非常好的题 */ #include #include #include #include #include #include #include using namespace std; typedef long long ll; const int N=105,mod=998244353; int c[N][N],s[N][N],f[N][N]; struct mat{... 阅读全文
posted @ 2016-10-19 17:26 ACforever 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 【 问题描述】有一天, 小 A 得到了一个长度为 n 的序列。他把这个序列的所有连续子序列都列了出来, 并对每一个子序列都求了其平均值, 然后他把这些平均值写在纸上, 并对它们进行排序,最后他报出了第 k 小的平均值。你要做的就是模仿他的过程。【 输入格式】第一行两个整数 n,k, 意义如题中所述。 阅读全文
posted @ 2016-10-19 11:25 ACforever 阅读(544) 评论(0) 推荐(0) 编辑
摘要: Problem Description Lele now is thinking about a simple function f(x).If x < 10 f(x) = x.If x >= 10 f(x) = a0 * f(x-1) + a1 * f(x-2) + a2 * f(x-3) + … 阅读全文
posted @ 2016-10-18 20:40 ACforever 阅读(137) 评论(0) 推荐(0) 编辑
摘要: (留坑) 阅读全文
posted @ 2016-10-18 20:15 ACforever 阅读(128) 评论(0) 推荐(0) 编辑
摘要: Description In the Fibonacci integer sequence, F0 = 0, F1 = 1, and Fn = Fn − 1 + Fn − 2 for n ≥ 2. For example, the first ten terms of the Fibonacci s 阅读全文
posted @ 2016-10-18 19:10 ACforever 阅读(191) 评论(0) 推荐(0) 编辑
摘要: Consider recurrent functions of the following form:f(n) = a1f(n - 1) + a2f(n - 2) + a3f(n - 3) + : : : + adf(n - d); for n > d;where a1, a2, …, ad are 阅读全文
posted @ 2016-10-18 17:02 ACforever 阅读(384) 评论(0) 推荐(0) 编辑
摘要: /* 这个题要用到树的性质,一般比较难的图论题会往这方面靠拢,这样用很容易出错,应该先写暴力,然后再去一点点想正解 */ //暴力70分 #include #include #include #include #include #include #include #define ll long long using namespace std; const int maxn = 2... 阅读全文
posted @ 2016-10-17 20:37 ACforever 阅读(321) 评论(0) 推荐(1) 编辑
摘要: 4.1 题意描述花花家的超市是 24 小时营业的,现在需要招聘收银员。超市每个小时都需要不同数量的收银员,用 ai 表示一天中 i 点到 i + 1 点这一小时内需要的收银员数量,特别地 a23 表示 23 点到次日 0 点需要的收银员数量。每个时刻可以有多于 ai的收银员工作,但是绝对不能少于 a 阅读全文
posted @ 2016-10-17 20:32 ACforever 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 题意描述“没有金坷垃,怎么种庄稼?”花花家有一块田,所有庄稼排成了 N 行 M 列。初始时,每棵庄稼都有一个自己的高度hi;j。花花每次可以使用 1mol 的金克拉使一棵庄稼的高度增加 1。现在有 Q 个询问,花花每次想知道最少需要使用多少 mol 的金克拉,才能使田里出现一块高度一致,大小为 ai 阅读全文
posted @ 2016-10-17 20:19 ACforever 阅读(403) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 36 下一页