上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 36 下一页
摘要: I 鸽子的整数运算 #include<bits/stdc++.h> using namespace std; int read() { int x = 0, f = 1, ch = getchar(); while ((ch < '0' || ch > '9') && ch != '-') ch = 阅读全文
posted @ 2022-08-17 20:04 PHarr 阅读(86) 评论(0) 推荐(0) 编辑
摘要: A - When? 问21:00后的第k分钟的时间 #include<bits/stdc++.h> using namespace std; const int N = 2e5+5; int n , a[N] , cnt , k; int32_t main(){ int n , h = 21 , m 阅读全文
posted @ 2022-08-16 20:48 PHarr 阅读(17) 评论(0) 推荐(0) 编辑
摘要: G 最长递增长度 求一下最长上升子序列,这里用了一个典型的$O(n\log n )$的做法就是模拟栈,并且不断替换栈,使得栈中的元素在保持长度不变的情况下尽可能的小 #include<bits/stdc++.h> using namespace std; int read() { int x = 0 阅读全文
posted @ 2022-08-14 21:06 PHarr 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 题单地址 https://ac.nowcoder.com/acm/problem/collection/2647 阅读全文
posted @ 2022-08-10 20:38 PHarr 阅读(29) 评论(0) 推荐(0) 编辑
摘要: # Notes 栈的模板 ```python class Stack(object): def __init__(self): self.items = [] def empty(self): return self.items == [] def push(self, item): self.it 阅读全文
posted @ 2022-08-10 19:40 PHarr 阅读(37) 评论(0) 推荐(0) 编辑
摘要: # 1:打印三角形 ```python n = int( input() ) for i in range( 1 , n + 1 ): for j in range( 0 , i ): print("*",end='') print("") ``` # 2:计算阶乘 ```cpp n = int( 阅读全文
posted @ 2022-08-10 10:57 PHarr 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 整活场,所以整体的氛围也比较轻松 A 宝藏 答案就是在题目的答案上面,当时我打开后不知道为什么,魔方只打乱了一次,然后就我把那一下拨回去就还原了用时 1s 得到答案后截图,在用取色工具取色,然后输出RGB 码就好 #include<bits/stdc++.h> using namespace std 阅读全文
posted @ 2022-08-09 15:21 PHarr 阅读(58) 评论(0) 推荐(0) 编辑
摘要: A 蕾凹娜的哀伤 完全背包的模板题,但是卡了一下时间要用二进制枚举优化一下 #include<bits/stdc++.h> #define int long long using namespace std; int read() { int x = 0, f = 1, ch = getchar() 阅读全文
posted @ 2022-08-01 09:46 PHarr 阅读(20) 评论(0) 推荐(0) 编辑
摘要: # 如何将自定义安装的软件加入到启动器中 这里以idea为例 首先打开`/usr/share/applications`这个目录新建一个`idea.desktop`文件,也可以在别的地方新建并修改好后复制到这个目录 ```shell [Desktop Entry] Type=Application 阅读全文
posted @ 2022-07-28 09:36 PHarr 阅读(49) 评论(0) 推荐(0) 编辑
摘要: LOJ 10120. 最敏捷的机器人 ST算法的模板题 #include <bits/stdc++.h> using namespace std; int read() { int x = 0, f = 1, ch = getchar(); while ((ch < '0' || ch > '9') 阅读全文
posted @ 2022-07-27 11:45 PHarr 阅读(27) 评论(0) 推荐(0) 编辑
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 36 下一页