CCF认证
文章平均质量分 76
生风虎
这个作者很懒,什么都没留下…
展开
-
CCF 201709-01打酱油
第一题就是个数学运算的水题,注意边界值。数据范围也很小的。#include using namespace std; int main(){ int n,sum = 0; cin >> n; if(n / 50 != 0){ sum += (n / 50) * 7;//满50可以得到7个 n = n % 50;//计算余数,剩下的钱去算买多少30的 } if(n / 30原创 2017-10-12 20:50:13 · 356 阅读 · 0 评论 -
CCF 201709-02公共钥匙盒
1.你需要知道可以用快速排序函数结合排序规则函数来给取放排序。 2.还要知道vector数组的强大功能。#include #include #include using namespace std; struct Action { int room; int time; int operators; // 0:放回, 1:取 Action(int room原创 2017-10-13 16:18:40 · 2134 阅读 · 6 评论