摘要: \[ # 描述 # 输入 # 输出 # 样例 ``` ``` ``` ``` # 提示 # 题解 ``` ``` # CODE ## AC代码 ``` ``` \] 描述 输入 输出 样例 提示 题解 CODE AC代码 阅读全文
posted @ 2020-10-27 20:12 LT-Y 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 入门1 顺序结构 P2181 对角线 P1001 A+B Problem P1000 超级玛丽游戏 P5703 【深基2.例5】苹果采购 P5704 【深基2.例6】字母转换 P5705 【深基2.例7】数字反转 P5706 【深基2.例8】再分肥宅水 P1425 小鱼的游泳时间 P2433 【深基 阅读全文
posted @ 2020-07-18 15:30 LT-Y 阅读(250) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-04-08 22:42 LT-Y 阅读(6) 评论(0) 推荐(0) 编辑
摘要: T1 计算A+B a, b = input().split() a = int(a) b = int(b) print(a+b) a, b = map(int, input().split()) #更简单的方式,文末会讲到 print(a + b) T2 A*B a, b = map(int, in 阅读全文
posted @ 2022-03-11 01:27 LT-Y 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 点击查看代码 #include<bits/stdc++.h> using namespace std; string s[110]; struct node{ map<string, int> sex; map<string, int> age; map<string, int> job; }; m 阅读全文
posted @ 2022-02-05 09:03 LT-Y 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-10-19 20:49 LT-Y 阅读(9) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-12-26 12:24 LT-Y 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 新知识涌入 用处: 检验程序正确性 例 题: 点击进入题面 这是一道前缀和的模板题 我们有2种写法:前缀和 或 暴力 ac.cpp //前缀和 #include<bits/stdc++.h> using namespace std; long long a[100010], num[100010]; 阅读全文
posted @ 2020-11-05 20:41 LT-Y 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 2.1 图的存储 2.1.1 邻接表 head[i]//起点为点i的边号 nxt[i]//i边的下一条边 to[i]//i边指向的点 add(a, b): to[E] = b; nxt[E] = head[a]; head[a] = E; E++; 2.1.2 并查集 int Find(int x) 阅读全文
posted @ 2020-10-29 20:12 LT-Y 阅读(90) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-10-18 16:52 LT-Y 阅读(0) 评论(0) 推荐(0) 编辑
摘要: sync_with_stdio()的一个特性 sync_with_stdio() 用处是“关闭同步”,从而加快cin与cout的效率。 在部分机子上如果开了这个函数cin和cout跑的还比printf和scanf快。 但是用了sync_with_stdio(false)之后不能与printf和sca 阅读全文
posted @ 2020-10-17 22:29 LT-Y 阅读(2029) 评论(0) 推荐(2) 编辑