摘要: 。。 阅读全文
posted @ 2024-10-13 16:55 飘向远方丶 阅读(4) 评论(0) 推荐(0) 编辑
摘要: A 清楚姐姐的学术群 int main() { int n = read(), m = read(), a = read(), b = read(); for(int i = 1; i <= n; i++) people[i].push_back(0); for(int i = 1; i <= m; 阅读全文
posted @ 2022-09-03 17:37 飘向远方丶 阅读(55) 评论(0) 推荐(0) 编辑
摘要: C 猪脑过载 思路: 我是把第一个位置放1,最后一个位置放1,中间放0的,其实也可以是第一个位置放2,其他位置放0。 代码: int main() { int T = read(); while(T--) { int n = read(); if(n == 1) { cout << 2 << end 阅读全文
posted @ 2022-09-03 17:37 飘向远方丶 阅读(33) 评论(0) 推荐(0) 编辑
摘要: A 奇偶判断 int main() { string s; cin >> s; int x = s[6] - '0'; if(x % 2) cout << 1 << endl; else cout << 0 << endl; return 0; } B 字母补全 思路: 依次枚举每个位置的后26位( 阅读全文
posted @ 2022-09-03 17:36 飘向远方丶 阅读(20) 评论(0) 推荐(0) 编辑
摘要: A - Square String? /* qwq! */ #include <iostream> #include <algorithm> #include <cstring> #include <cstdio> #include <map> #include <vector> #include 阅读全文
posted @ 2022-09-03 17:36 飘向远方丶 阅读(14) 评论(0) 推荐(0) 编辑
摘要: A - Make postcards signed main() { int T = read(); while(T--) { int a = read(), b = read(), n = read(); int cnt = 0; while(a % 2 == 0) { cnt++; a /= 2 阅读全文
posted @ 2022-09-03 17:36 飘向远方丶 阅读(17) 评论(0) 推荐(0) 编辑
摘要: A 阿宁的柠檬 signed main() { int a = read(), b = read(), n = read(); LL mi = 1 * n; LL ma = a * n + b * n; cout << mi << ' ' << ma << endl; return 0; } B 阿 阅读全文
posted @ 2022-09-03 17:35 飘向远方丶 阅读(21) 评论(0) 推荐(0) 编辑
摘要: H - The Tag Game 题目: Alice got tired of playing the tag game by the usual rules so she offered Bob a little modification to it. Now the game should be 阅读全文
posted @ 2022-09-03 17:34 飘向远方丶 阅读(26) 评论(0) 推荐(0) 编辑
摘要: copy才是最快的 阅读全文
posted @ 2022-08-28 23:55 飘向远方丶 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 英雄何必问出处 阅读全文
posted @ 2022-07-11 09:07 飘向远方丶 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 从零搭建一个实战项目,并将其上线到云端,可以丰富简历或用作毕设。 阅读全文
posted @ 2022-07-07 15:06 飘向远方丶 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 好好刷题 天天向上 阅读全文
posted @ 2022-07-07 11:03 飘向远方丶 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 系统讲解基础算法与数据结构的原理,并给出相应代码模板 阅读全文
posted @ 2022-07-07 10:53 飘向远方丶 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 系统讲解常用算法与数据结构的应用方式与技巧。 阅读全文
posted @ 2022-04-16 23:27 飘向远方丶 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 讲解各种项目后端服务器的配置与使用方式。 阅读全文
posted @ 2022-04-16 23:01 飘向远方丶 阅读(13) 评论(0) 推荐(0) 编辑