码迷,mamicode.com
首页 >  
搜索关键字:crb and candies    ( 410个结果
HDU - 5406 CRB and Apple (费用流)
题意:对于给定的物品,求两个在高度上单调不递增,权值上单调不递减的序列,使二者长度之和最大。 分析:可以用费用流求解,因为要求长度和最大,视作从源点出发的流量为2的费用流,建负权边,每个物品只能取一次,且花费为 1。将每个物品拆成入点和出点,中间建容量为1,费用为 1的弧。建源点s和超级源点S,S到 ...
分类:移动开发   时间:2018-09-23 16:26:50    阅读次数:224
ACM-ICPC 2018 焦作赛区网络预赛 G. Give Candies (打表找规律+快速幂)
题目链接:https://nanti.jisuanke.com/t/31716 题目大意:有n个孩子和n个糖果,现在让n个孩子排成一列,一个一个发糖果,每个孩子随机挑选x个糖果给他,x>=1,直到无糖果剩余为止。给出数字n,问有多少种分发糖果的方法。 样例输入 复制 样例输出 复制 8 样例输出 复 ...
分类:其他好文   时间:2018-09-20 01:13:35    阅读次数:187
【Give Candies】(费马小定理)
#include #define MAX 100005 #define mod 1000000007 using namespace std; typedef long long ll; char st[MAX]; int main() { int t; scanf("%d",&t); while(... ...
分类:其他好文   时间:2018-09-16 16:19:56    阅读次数:148
[2018 ACM-ICPC 焦作赛区网络赛] G - Give Candies(找规律+快速幂)
题目链接 There are N children in kindergarten. Miss Li bought them N candies. To make the process more interesting, Miss Li comes up with the rule: All th ...
分类:其他好文   时间:2018-09-16 15:24:21    阅读次数:461
leetcode135 - Candy - hard
There are N children standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the following req ...
分类:其他好文   时间:2018-09-16 12:25:21    阅读次数:169
【费马小定理+快速幂取模】ACM-ICPC 2018 焦作赛区网络预赛 G. Give Candies
G. Give Candies There are N children in kindergarten. Miss Li bought them N candies. To make the process more interesting, Miss Li comes up with the r ...
分类:其他好文   时间:2018-09-16 00:32:25    阅读次数:299
ACM-ICPC 2018 焦作赛区网络预赛G Give Candies(欧拉降幂)
题意:给你n个东西,叫你把n分成任意段,这样的分法有几种(例如3:1 1 1,1 2,2 1,3 ;所以3共有4种),n最多有1e5位,答案取模p = 1e9+7 思路:就是往n个东西中间插任意个板子,所以最多能插n - 1个,所以答案为2^(n - 1) % p。直接套用模板 ...
分类:其他好文   时间:2018-09-15 21:20:03    阅读次数:191
ACM-ICPC 2018 焦作赛区网络预赛 G题 Give Candies
There are NN children in kindergarten. Miss Li bought them NN candies. To make the process more interesting, Miss Li comes up with the rule: All the c ...
分类:其他好文   时间:2018-09-15 20:02:19    阅读次数:403
HDU多校2017第7场
6121 Build a tree 6125 Free from square 6126 Give out candies 6127 Hard challenge 6128 Inverse of sum 6129 Just do it 对于变换$m$次之后的序列,考虑$a_0$对$a_i(0 \le ...
分类:其他好文   时间:2018-07-21 00:51:20    阅读次数:171
[leetcode] Distribute Candies
Given an integer array with even length, where different numbers in this array represent different kinds of candies. Each number means one candy of th ...
分类:其他好文   时间:2018-07-13 13:28:56    阅读次数:165
410条   上一页 1 ... 7 8 9 10 11 ... 41 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!