Loading

上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 75 下一页
摘要: 众所周知,delete 会释放new出来的单个对象指针指向的内存,这个“释放”的含义就是将这一块内存标记为可用,但并不会删除其指向的值。 这就很有意思了,在Codeblocks中执行如下语句: Score* s=new Score(96,95); delete s; s->show(); 实际上还是 阅读全文
posted @ 2020-06-25 23:57 脂环 阅读(950) 评论(0) 推荐(0) 编辑
摘要: 私有继承: 父类的公有成员和私有成员到了子类里全部私有。子类内部可以访问继承过来的公有成员(比如类内函数可以访问),但外部无法直接访问(如直接cout<<a.age()) 公有继承: 父类的公有成员和保护成员到了子类里访问属性不变,但类外只能访问公有成员。 保护继承: 父类的公有和保护成员可以在子类 阅读全文
posted @ 2020-06-17 20:16 脂环 阅读(36) 评论(0) 推荐(0) 编辑
摘要: The last contest held on Johnny's favorite competitive programming platform has been received rather positively. However, Johnny's rating has dropped 阅读全文
posted @ 2020-06-07 21:37 脂环 阅读(298) 评论(0) 推荐(0) 编辑
摘要: Among Johnny's numerous hobbies, there are two seemingly harmless ones: applying bitwise operations and sneaking into his dad's office. As it is usual 阅读全文
posted @ 2020-06-07 21:33 脂环 阅读(304) 评论(0) 推荐(0) 编辑
摘要: Johnny has recently found an ancient, broken computer. The machine has only one register, which allows one to put in there one variable. Then in one o 阅读全文
posted @ 2020-06-07 21:31 脂环 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 好,好难 https://ac.nowcoder.com/acm/contest/5477 A. 题目描述 天才程序员菜哭武和张老师有一天到一个城市旅游,旅途中菜哭武觉得无聊就想和张老师玩一个游戏。菜哭武有n个石子,每个石子都标有1到n之间到数,且各不相同,一开始他们会随机从这堆石子选一个石子放置到 阅读全文
posted @ 2020-06-03 19:45 脂环 阅读(245) 评论(0) 推荐(0) 编辑
摘要: In an edge-weighted tree, the xor-length of a path p is defined as the xor sum of the weights of edges on p: ⊕ is the xor operator. We say a path the 阅读全文
posted @ 2020-06-03 14:37 脂环 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 在给定的 N 个整数 A1,A2,…,AN 中选出两个进行异或运算,得到的结果最大是多少? Input 第一行一个整数 N。 第二行 N 个整数 Ai。 Output 一个整数表示答案。 Example 样例输入 5 2 9 5 7 0 样例输出 14 Hint 对于 100%100% 的数据,1≤ 阅读全文
posted @ 2020-06-02 11:51 脂环 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 题目背景 XS中学化学竞赛组教练是一个酷爱炉石的人。 他会一边搓炉石一边点名以至于有一天他连续点到了某个同学两次,然后正好被路过的校长发现了然后就是一顿欧拉欧拉欧拉(详情请见已结束比赛CON900)。 题目描述 这之后校长任命你为特派探员,每天记录他的点名。校长会提供化学竞赛学生的人数和名单,而你需 阅读全文
posted @ 2020-06-02 09:14 脂环 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 给定N个字符串S1,S2…SNS1,S2…SN,接下来进行M次询问,每次询问给定一个字符串T,求S1S1~SNSN中有多少个字符串是T的前缀。 输入字符串的总长度不超过106106,仅包含小写字母。 输入格式 第一行输入两个整数N,M。 接下来N行每行输入一个字符串SiSi。 接下来M行每行一个字符 阅读全文
posted @ 2020-06-02 08:39 脂环 阅读(228) 评论(0) 推荐(0) 编辑
上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 75 下一页