CCCherry

导航

2020年2月6日 #

牛客寒假集训营第二场 补题

摘要: D数三角形 比赛的时候我咋就没有想到用向量呢!!! 1 #include <iostream> 2 using namespace std; 3 struct node{ 4 int x,y; 5 }m[505]; 6 bool is(int i,int j,int k) 7 { 8 int t=( 阅读全文

posted @ 2020-02-06 20:08 CCCherry 阅读(114) 评论(0) 推荐(0) 编辑

2020年2月5日 #

牛客寒假集训营第一场 补题

摘要: G-eli和字符串 https://ac.nowcoder.com/acm/contest/3002/G 题目描述 eli拿到了一个仅由小写字母组成的字符串。 她想截取一段连续子串,这个子串包含至少 个相同的某个字母。 她想知道,子串的长度最小值是多少? 注:所谓连续子串,指字符串删除头部和尾部的部 阅读全文

posted @ 2020-02-05 19:39 CCCherry 阅读(161) 评论(0) 推荐(0) 编辑

2020年2月3日 #

SDNU_ACM_ICPC_2020_Winter_Practice_4th

摘要: H - Triangle 思路:用了斐波那契数列,因为数列中的任意三数都无法组成三角形,所以将1,2,3,,,n变成斐波那契数列就符合条件; 1 #include <iostream> 2 using namespace std; 3 int main() 4 { 5 int t,n,a,sum=0 阅读全文

posted @ 2020-02-03 21:51 CCCherry 阅读(137) 评论(0) 推荐(0) 编辑

2020年1月31日 #

SDNU_ACM_ICPC_2020_Winter_Practice_2nd

摘要: A - 【The__Flash】的矩阵 给你一个m×n的整数矩阵,在上面找一个x×y的子矩阵,使子矩阵中所有元素的和最大。 Input输入数据的第一行为一个正整数T,表示有T组测试数据。每一组测试数据的第一行为四个正整数m,n,x,y(0<m,n<1000 AND 0<x<=m AND 0<y<=n 阅读全文

posted @ 2020-01-31 13:10 CCCherry 阅读(121) 评论(0) 推荐(0) 编辑

2020年1月22日 #

SDNU_ACM_ICPC_2020_Winter_Practice_1st

摘要: A Petya is a big fan of mathematics, esecially its part related to fractions. Recently he learned that a fraction is called proper iff its numerator i 阅读全文

posted @ 2020-01-22 20:50 CCCherry 阅读(187) 评论(0) 推荐(0) 编辑

凉脾的比赛

摘要: A - DRM Messages DRM Encryption is a new kind of encryption. Given an encrypted string (which we’ll call a DRM message), the decryption process involv 阅读全文

posted @ 2020-01-22 18:59 CCCherry 阅读(171) 评论(0) 推荐(0) 编辑

2020年1月17日 #

凉肝的比赛

摘要: A - Mezo Playing Zoma Today, Mezo is playing a game. Zoma, a character in that game, is initially at position x=0x=0. Mezo starts sending nn commands 阅读全文

posted @ 2020-01-17 16:28 CCCherry 阅读(219) 评论(0) 推荐(0) 编辑

2020年1月12日 #

凉心的比赛(一)题解

摘要: A - 最小的二进制数 题目 String can be called correct if it consists of characters "0" and "1" and there are no redundant leading zeroes. Here are some examples 阅读全文

posted @ 2020-01-12 19:45 CCCherry 阅读(172) 评论(0) 推荐(0) 编辑

2020年1月5日 #

新生训练赛002题解

摘要: J 新年快乐!!! I 十进制中的二进制: 题目hkhv学长最近对二进制数很感兴趣,喜欢一切0和1组成的数。现在有一个十进制整数n,问你1到n之间有多少个数是只有0和1组成的类似二进制的数,输出他们的个数。Input输入数据包含一个数n (1 <= n <=10^9).Output输出1到n中类似二 阅读全文

posted @ 2020-01-05 20:19 CCCherry 阅读(269) 评论(0) 推荐(0) 编辑