BIT
Masker_43
这个作者很懒,什么都没留下…
展开
-
BIT_201906【B - Visual Cube】
思路: 画图题。初始化为 ‘.’ ,画出图形。 代码: 46ms 1004KB #include <iostream> #include <cstring> using namespace std; const int maxn = 1005; int A,B,C; int length , height; char mp[maxn][maxn]; int ...原创 2019-06-29 13:07:01 · 133 阅读 · 0 评论 -
BIT_201906【D - Xiao Ming's String】
思路: 把每个字符和它的个数存成一个结构体 ALPHA,优先队列每次取出最多的两个字符打印。注意最后是否成功的判定条件。 代码: 46ms 400KB #include <iostream> #include <cstring> #include <string> #include <queue> using namespace std; ...原创 2019-06-29 13:11:40 · 141 阅读 · 0 评论