码迷,mamicode.com
首页 >  
搜索关键字:crb and candies    ( 410个结果
Codeforces Round #634 (Div. 3)
A. Candies and Two Sisters 题意 把一个数拆成两个不等的数有多少种情况。 思路 奇数时除以二即可,偶数时需要再减去相等的情况。 代码 #include <bits/stdc++.h> using namespace std; void solve() { int n; ci ...
分类:其他好文   时间:2020-04-14 09:16:51    阅读次数:81
0305-分糖果
分糖果 题目卡片 时间: 2020 03 05 题目链接: [1103]: https://leetcode cn.com/problems/distribute candies to people/ Tag:math 思路 题目挺简单的,按着题目描述来可暴力求解。 "对小朋友们进行遍历,每次都发小 ...
分类:其他好文   时间:2020-03-11 16:57:16    阅读次数:61
C . Brownies vs. Candies vs. Cookies -UCF Local Programming Contest 2015
https://nanti.jisuanke.com/t/43388 题意 一共有 m 个队伍(无用数据), n 块蛋糕,对蛋糕进行 t 次操作 每次操作:给定当前队伍的人数 num ,对当前蛋糕数量 n 进行需求: 如果 n>num,num-=n; 否则,把所有的蛋糕切成两半(即n*=2)之后,再 ...
分类:其他好文   时间:2020-03-08 17:52:53    阅读次数:51
每日两题编程
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12419542.html 1.分糖果(力扣57min) 题目链接:https://leetcode-cn.com/problems/distribute-candies-to-people/submissio ...
分类:其他好文   时间:2020-03-05 13:37:16    阅读次数:69
[LeetCode] 1103. Distribute Candies to People 分糖果
题目: 思路: 本题一开始的思路就是按照流程一步步分下去,算是暴力方法,在官方题解中有利用等差数列进行计算的 这里只记录一下自己的暴力解题方式 只考虑每次分配的糖果数,分配的糖果数为1,2,3,4,5,..., 依次加1 再考虑到分配的轮数,可以利用 i % num_people 来求得第i次应该分 ...
分类:其他好文   时间:2020-03-05 11:50:27    阅读次数:69
Candies POJ - 3159 差分约束
// #include<iostream> #include<cstring> #include<queue> #include<stack> #include<stdio.h> using namespace std; const int INF=0x3f3f3f3f; const int N=3 ...
分类:其他好文   时间:2020-01-31 16:01:31    阅读次数:71
[hdu-5795]A Simple Nim 博弈 尼姆博弈 SG函数打表找规律
【题目】题目链接 Two players take turns picking candies from n heaps,the player who picks the last one will win the game.On each turn they can pick any number ...
分类:其他好文   时间:2020-01-16 14:47:51    阅读次数:57
【leetcode】1298. Maximum Candies You Can Get from Boxes
题目如下: Given n boxes, each box is given in the format [status, candies, keys, containedBoxes] where: status[i]: an integer which is 1 if box[i] is open ...
分类:其他好文   时间:2020-01-04 22:20:05    阅读次数:86
Codeforces Round #611 (Div. 3)
| | Name | | : : | : : | | "A" | "Minutes Before the New Year" standard input/output1 s, 256 MB | | "B" | "Candies Division" standard input/output2 s, ...
分类:其他好文   时间:2019-12-30 09:19:20    阅读次数:61
Codeforces Round #603 (Div. 2) A. Sweet Problem(数学)
链接: https://codeforces.com/contest/1263/problem/A 题意: You have three piles of candies: red, green and blue candies: the first pile contains only red c ...
分类:其他好文   时间:2019-12-17 13:20:32    阅读次数:69
410条   上一页 1 2 3 4 5 6 ... 41 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!