2017年8月14日

Educational Codeforces Round 26 - A, B, C 思维

摘要: 比赛链接: http://codeforces.com/contest/837 A: Text Volume 水 B: Flag of Berland 题目描述: 给你一个字符矩阵, 问能不能形成三条条纹 解题思路: 纯细节题, 中间因为马虎WA了几次 代码: #include <iostream> 阅读全文

posted @ 2017-08-14 16:48 FriskyPuppy 阅读(184) 评论(0) 推荐(0) 编辑

Codeforces Round 427 B The name on the board 水题

摘要: 题目链接: http://codeforces.com/contest/835/problem/B 题目描述: 一个数原来的和至少K,再给出一个数问最少改变几位可以得到原来那个数 解题思路: 水题 代码: #include <iostream> #include <cstdio> #include 阅读全文

posted @ 2017-08-14 11:27 FriskyPuppy 阅读(135) 评论(0) 推荐(0) 编辑

Codeforces Round 428 B Game of the rows 贪心 思维

摘要: 题目链接: http://codeforces.com/contest/839/problem/B 题目描述: 有K种人, 有N排的11, 1111, 11的座位, 要求不同种人不能坐在相邻的位置, 给你K种人每种人的人数, 问能不能安排的下? 解题思路: 首先我们先放不小于三个的,挨个遍历, 只能 阅读全文

posted @ 2017-08-14 11:02 FriskyPuppy 阅读(181) 评论(0) 推荐(0) 编辑

导航