摘要:
I 鸽子的整数运算 #include<bits/stdc++.h> using namespace std; int read() { int x = 0, f = 1, ch = getchar(); while ((ch < '0' || ch > '9') && ch != '-') ch = 阅读全文
摘要:
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 阅读全文
摘要:
G 最长递增长度 求一下最长上升子序列,这里用了一个典型的$O(n\log n )$的做法就是模拟栈,并且不断替换栈,使得栈中的元素在保持长度不变的情况下尽可能的小 #include<bits/stdc++.h> using namespace std; int read() { int x = 0 阅读全文
摘要:
题单地址 https://ac.nowcoder.com/acm/problem/collection/2647 阅读全文
摘要:
# Notes 栈的模板 ```python class Stack(object): def __init__(self): self.items = [] def empty(self): return self.items == [] def push(self, item): self.it 阅读全文
摘要:
# 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( 阅读全文
摘要:
整活场,所以整体的氛围也比较轻松 A 宝藏 答案就是在题目的答案上面,当时我打开后不知道为什么,魔方只打乱了一次,然后就我把那一下拨回去就还原了用时 1s 得到答案后截图,在用取色工具取色,然后输出RGB 码就好 #include<bits/stdc++.h> using namespace std 阅读全文
摘要:
A 蕾凹娜的哀伤 完全背包的模板题,但是卡了一下时间要用二进制枚举优化一下 #include<bits/stdc++.h> #define int long long using namespace std; int read() { int x = 0, f = 1, ch = getchar() 阅读全文
摘要:
# 如何将自定义安装的软件加入到启动器中 这里以idea为例 首先打开`/usr/share/applications`这个目录新建一个`idea.desktop`文件,也可以在别的地方新建并修改好后复制到这个目录 ```shell [Desktop Entry] Type=Application 阅读全文
摘要:
LOJ 10120. 最敏捷的机器人 ST算法的模板题 #include <bits/stdc++.h> using namespace std; int read() { int x = 0, f = 1, ch = getchar(); while ((ch < '0' || ch > '9') 阅读全文