CCCherry

导航

2021年8月13日 #

vue报错Failed to mount component: template or render function not defined.

摘要: 居然是因为少了一个分号!!! <template> <div><h3>用户列表组件</h3></div> </template> <script> export default {};//就是它 </script> <style Lang="less" scoped> </style> 阅读全文

posted @ 2021-08-13 20:33 CCCherry 阅读(121) 评论(0) 推荐(0) 编辑

2020年3月23日 #

Efficient Exchange

摘要: Efficient Exchange 1 #include <iostream> 2 #include <cmath> 3 #include <string> 4 using namespace std; 5 int main() 6 { 7 int n[10000]; 8 string c; 9 阅读全文

posted @ 2020-03-23 21:59 CCCherry 阅读(146) 评论(0) 推荐(0) 编辑

0323C - Cupboard and Balloons

摘要: C - Cupboard and Balloons 1 #include <iostream> 2 #include <cmath> 3 using namespace std; 4 int main() 5 { 6 int r,h,sum=0; 7 cin>>r>>h; 8 sum=h/r*2; 阅读全文

posted @ 2020-03-23 21:52 CCCherry 阅读(110) 评论(0) 推荐(0) 编辑

2020年3月22日 #

0321补题

摘要: C - Watchmen 无比暴力的暴力 1 #include <iostream> 2 #include<algorithm> 3 using namespace std; 4 long long n,p[200005],q[200005],s[200005]; 5 struct node{ 6 阅读全文

posted @ 2020-03-22 22:16 CCCherry 阅读(112) 评论(0) 推荐(0) 编辑

2020年3月21日 #

0319补题

摘要: C - Candies 二分答案 1 #include <iostream> 2 #include <algorithm> 3 #include <cmath> 4 using namespace std; 5 long long a,sum=1; 6 long long find(long lon 阅读全文

posted @ 2020-03-21 10:26 CCCherry 阅读(110) 评论(0) 推荐(0) 编辑

2020年3月6日 #

UCF Local Programming Contest 2012(Practice)补题

摘要: Clean Up the Powers that Be 主要是输出格式上的问题 1 #include <iostream> 2 #include <cstring> 3 using namespace std; 4 int main(){ 5 long long t,s[10005]; 6 cin> 阅读全文

posted @ 2020-03-06 21:24 CCCherry 阅读(205) 评论(0) 推荐(0) 编辑

2020年2月27日 #

20200226补题

摘要: B - Game on Paper One not particularly beautiful evening Valera got very bored. To amuse himself a little bit, he found the following game. He took a 阅读全文

posted @ 2020-02-27 19:45 CCCherry 阅读(131) 评论(0) 推荐(0) 编辑

2020年2月15日 #

牛客寒假训练营6 补题

摘要: 链接:https://ac.nowcoder.com/acm/contest/3007/A来源:牛客网A配对 题目描述 现在有正整数集合 A 和 B,每个集合里有 N 个数,你要建立他们间的一一映射 将每对配对的数字相加可以得到 N 个和,你要做的就是最大化第 K 大的和 1≤K≤N≤100,000 阅读全文

posted @ 2020-02-15 21:15 CCCherry 阅读(171) 评论(0) 推荐(0) 编辑

2020年2月13日 #

牛客寒假训练营五 补题

摘要: 链接:https://ac.nowcoder.com/acm/contest/3006/D来源:牛客网 牛牛在辛苦的一天的比赛之后,要去找牛妹玩,其实牛妹那天也在比赛。他为了找到牛妹,要尽快的从自己的比赛地到她的比赛地。 还记得吗,比赛地都是只在xxx轴上的,所以两个人的坐标都满足y=0y=0y=0 阅读全文

posted @ 2020-02-13 21:22 CCCherry 阅读(172) 评论(0) 推荐(0) 编辑

2020年2月12日 #

牛客寒假训练营三 补题

摘要: 链接:https://ac.nowcoder.com/acm/contest/3004/A来源:牛客网 牛牛有一个n*m的迷宫,对于迷宫中的每个格子都为'R','D','B'三种类型之一,'R'表示处于当前的格子时只能往右边走'D'表示处于当前的格子时只能往下边走,而'B'表示向右向下均可以走。 我 阅读全文

posted @ 2020-02-12 21:33 CCCherry 阅读(131) 评论(0) 推荐(0) 编辑