蓝桥杯2014年第五届真题-分糖果 摘要:解题思路:注意事项:参考代码:n = int(input())ans = list(map(int,input().split()))list = [0]*100p = 0while True: …… 题解列表 2021年09月26日 0 点赞 0 评论 96 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int kid[105]; int tem[105]; int judge(int *kid,int n); int main…… 题解列表 2019年03月07日 0 点赞 0 评论 372 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果-题解(C++代码) 摘要:``` #include #include using namespace std; int a[100],n,answer; int b[100];//是每个一半的数量 int aa[1…… 题解列表 2020年02月11日 0 点赞 0 评论 343 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int N; cin>>N; int num[N],surplus[N],giv…… 题解列表 2019年09月25日 0 点赞 0 评论 407 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果 (C++代码)为什么时间超限 摘要:解题思路:注意事项:参考代码: #include "iostream" using namespace std; int main() { int n,num=0,i; cin >> n;…… 题解列表 2019年02月18日 0 点赞 0 评论 490 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果 (C语言代码) 摘要:解题思路:简单模拟注意事项:参考代码:#include <iostream>using namespace std;int arr[1000];int ans;void give_out(int n)…… 题解列表 2018年06月15日 0 点赞 0 评论 546 浏览 评分:0.0
题目这意思感觉没表达清楚啊 摘要:解题思路:思路很简单,就是模拟题目的过程,不过可能算法上还能优化一下时间。注意事项:题目说“每个小朋友都把自己的糖果分一半给左手边的孩子。 ”我一开始以为是分一半给左边后,左边的加上那一半再去分,结果…… 题解列表 2021年02月23日 0 点赞 0 评论 148 浏览 评分:0.0
倒计时28天——分糖果 摘要:复盘:1. 围成一个圈,最后一个孩子没有考虑全面,轮到他时,第一个孩子糖果数量已经发生改变,需要临时变量保存;2. DevC++调试时,左上角查看变量;参考代码:#include<stdio.h> …… 题解列表 2021年03月21日 0 点赞 0 评论 131 浏览 评分:0.0
花落的新手写法 (C语言代码) 摘要:解题思路:注意事项:注意他们拿手中的一半的时候是没有顺序的,而且第一个要把糖果给最后一个。参考代码:#include<stdio.h>int jiancha(int *p,int n){ int i,…… 题解列表 2017年12月15日 0 点赞 0 评论 791 浏览 评分:0.0
用stl的set,感觉效率不高,但是代码比较简单 摘要:解题思路:想不出有啥捷径,按步骤做注意事项:参考代码:#include<iostream>#include<algorithm>#include <set>using namespace std;in…… 题解列表 2018年02月07日 0 点赞 0 评论 904 浏览 评分:0.0